File tree 1 file changed +3
-7
lines changed
1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -27,10 +27,8 @@ class HomePage extends StatelessWidget {
27
27
_onBackendConnectionLost (context);
28
28
}
29
29
return Scaffold (
30
- backgroundColor: Colors .black,
31
30
body: isBackendAccessible
32
31
? Stack (
33
- alignment: Alignment .topCenter,
34
32
children: [
35
33
LayoutBuilder (builder: (context, constraints) {
36
34
BlocProvider .of <DisplayCubit >(context)
@@ -46,7 +44,6 @@ class HomePage extends StatelessWidget {
46
44
state.adjustedSize.height,
47
45
child: Stack (
48
46
fit: StackFit .expand,
49
- alignment: Alignment .topCenter,
50
47
children: [
51
48
DisplayView (type: state.rendererType),
52
49
PointerInterceptor (
@@ -67,10 +64,9 @@ class HomePage extends StatelessWidget {
67
64
top: 0 ,
68
65
child: Container (
69
66
decoration: BoxDecoration (
70
- color: Colors .black.withOpacity (0.8 ),
71
- borderRadius: const BorderRadius .only (
72
- bottomLeft: Radius .circular (
73
- TADimens .ROUND_BORDER_RADIUS ))),
67
+ color: Colors .black.withOpacity (0.8 ),
68
+ borderRadius: const BorderRadius .only (bottomLeft: Radius .circular (TADimens .ROUND_BORDER_RADIUS ))
69
+ ),
74
70
child: const Row (
75
71
children: [
76
72
UpdateButton (),
You can’t perform that action at this time.
0 commit comments