Skip to content

Commit ddda0ea

Browse files
committed
Revert "Update home_page.dart"
This reverts commit 754b2f4.
1 parent f29c89d commit ddda0ea

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

Diff for: lib/feature/home/home_page.dart

+3-7
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,8 @@ class HomePage extends StatelessWidget {
2727
_onBackendConnectionLost(context);
2828
}
2929
return Scaffold(
30-
backgroundColor: Colors.black,
3130
body: isBackendAccessible
3231
? Stack(
33-
alignment: Alignment.topCenter,
3432
children: [
3533
LayoutBuilder(builder: (context, constraints) {
3634
BlocProvider.of<DisplayCubit>(context)
@@ -46,7 +44,6 @@ class HomePage extends StatelessWidget {
4644
state.adjustedSize.height,
4745
child: Stack(
4846
fit: StackFit.expand,
49-
alignment: Alignment.topCenter,
5047
children: [
5148
DisplayView(type: state.rendererType),
5249
PointerInterceptor(
@@ -67,10 +64,9 @@ class HomePage extends StatelessWidget {
6764
top: 0,
6865
child: Container(
6966
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+
),
7470
child: const Row(
7571
children: [
7672
UpdateButton(),

0 commit comments

Comments
 (0)