diff --git a/app/lib/pages/default_page.dart b/app/lib/pages/default_page.dart index d7aeae321e0ad00308ac05a72a8ddb4a00d78924..b9c1d308233185f6970c03c435ce1ee0cc59ddfd 100644 --- a/app/lib/pages/default_page.dart +++ b/app/lib/pages/default_page.dart @@ -22,6 +22,7 @@ class _DefaultPageState extends State<DefaultPage> { late Timer _timer; bool serverConnection = true; bool dialogShown = false; + final backgroundColor = Colors.black87; @override void dispose() { @@ -37,9 +38,9 @@ class _DefaultPageState extends State<DefaultPage> { Widget build(BuildContext context) { return MaterialApp( home: Scaffold( - backgroundColor: Colors.grey[900], + backgroundColor: backgroundColor, appBar: AppBar( - backgroundColor: Colors.black87, + backgroundColor: backgroundColor, leading: IconButton( icon: const Icon( Icons.menu, @@ -84,8 +85,8 @@ class _DefaultPageState extends State<DefaultPage> { ], ), body: LiquidPullToRefresh( - color: Colors.grey[900], - height: 200, + color: backgroundColor, + height: 100, backgroundColor: Colors.grey[600], onRefresh: _handleRefresh, animSpeedFactor: 3,