File tree Expand file tree Collapse file tree
config/presentation/pages Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11name : ' dslideshow_backend'
2- version : 9.5.3
2+ version : 9.5.3+2
33description : A sample command-line application
44publish_to : none
55environment :
Original file line number Diff line number Diff line change 1+ # 9.5.3+2
2+ Fix QRCode in Config and OTA pages
3+
14# 9.5.3
25Fix critical issue in Config and OTA pages
36
Original file line number Diff line number Diff line change 11abstract class ApplicationInfo {
2- static const String frontendVersion = '9.5.2+1 ' ;
3- static const String backendVersion = '9.5.2+1 ' ;
2+ static const String frontendVersion = '9.5.3+2 ' ;
3+ static const String backendVersion = '9.5.3+2 ' ;
44}
Original file line number Diff line number Diff line change @@ -102,8 +102,12 @@ class _ConfigPageState extends State<ConfigPage> {
102102 backgroundColor: _backgroundColor,
103103 body: Stack (
104104 children: [
105- Positioned .fill (
106- child: isReady ? _buildConfigContent () : Center (child: CircularProgressIndicator (color: _accentColor)),
105+ Column (
106+ children: [
107+ Expanded (
108+ child: isReady ? _buildConfigContent () : Center (child: CircularProgressIndicator (color: _accentColor)),
109+ ),
110+ ],
107111 ),
108112 const CommonHeaderWidget (),
109113 // 2. DEBUG СЛОЙ (поверх основного)
Original file line number Diff line number Diff line change @@ -20,7 +20,11 @@ class OtaReadyWidget extends StatelessWidget {
2020 Widget build (BuildContext context) {
2121 return Stack (
2222 children: [
23- Positioned .fill (child: _buildOtaReadyContent ()),
23+ Column (
24+ children: [
25+ Expanded (child: _buildOtaReadyContent ()),
26+ ],
27+ ),
2428 const CommonHeaderWidget (),
2529
2630 // 2. DEBUG СЛОЙ (поверх основного)
Original file line number Diff line number Diff line change 11name : dslideshow_flutter
22description : Flutter SlideShow
3- version : 9.5.3
3+ version : 9.5.3+2
44publish_to : none
55
66environment :
You can’t perform that action at this time.
0 commit comments