Skip to content

Commit 507c7fa

Browse files
author
Igor Demyanov
committed
Fix QRCode in Config and OTA pages
1 parent ea706ae commit 507c7fa

6 files changed

Lines changed: 18 additions & 7 deletions

File tree

backend/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: 'dslideshow_backend'
2-
version: 9.5.3
2+
version: 9.5.3+2
33
description: A sample command-line application
44
publish_to: none
55
environment:

changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 9.5.3+2
2+
Fix QRCode in Config and OTA pages
3+
14
# 9.5.3
25
Fix critical issue in Config and OTA pages
36

common/lib/version.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
abstract 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
}

dslideshow_flutter/lib/features/config/presentation/pages/config_page.dart

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff 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 СЛОЙ (поверх основного)

dslideshow_flutter/lib/features/ota/presentation/widgets/ota_ready_widget.dart

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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 СЛОЙ (поверх основного)

dslideshow_flutter/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: dslideshow_flutter
22
description: Flutter SlideShow
3-
version: 9.5.3
3+
version: 9.5.3+2
44
publish_to: none
55

66
environment:

0 commit comments

Comments
 (0)