diff --git a/lib/status_page.dart b/lib/status_page.dart index 97a7537..91d802a 100644 --- a/lib/status_page.dart +++ b/lib/status_page.dart @@ -108,7 +108,7 @@ class StatusPageState extends State with WidgetsBindingObserver { toastLength: Toast.LENGTH_SHORT, gravity: ToastGravity.BOTTOM, backgroundColor: Colors.blueAccent, - webBgColor: "#0000FF", // Only use hex values for web + webBgColor: "#0000FF", textColor: Colors.white, fontSize: 16.0, timeInSecForIosWeb: 1, @@ -119,7 +119,7 @@ class StatusPageState extends State with WidgetsBindingObserver { toastLength: Toast.LENGTH_SHORT, gravity: ToastGravity.BOTTOM, backgroundColor: Colors.redAccent, - webBgColor: "#FF0000", // Only use hex values for web + webBgColor: "#FF0000", textColor: Colors.white, fontSize: 16.0, timeInSecForIosWeb: 1, @@ -138,8 +138,7 @@ class StatusPageState extends State with WidgetsBindingObserver { fontSize: 16.0, timeInSecForIosWeb: 1, ); - debugPrint( - "Error in _sendStatus: $e"); // Use debugPrint instead of exposing error + debugPrint("Error in _sendStatus: $e"); } } @@ -261,9 +260,14 @@ class StatusPageState extends State with WidgetsBindingObserver { return Scaffold( appBar: AppBar( - title: Image.asset( - 'assets/pogdark_logo.png', - height: 40, + title: Row( + mainAxisAlignment: MainAxisAlignment.start, + children: [ + Image.asset( + 'assets/pogdark_logo.png', + height: 40, + ), + ], ), backgroundColor: Colors.blueAccent, ), diff --git a/web/favicon.png b/web/favicon.png index 8aaa46a..2a42d7c 100644 Binary files a/web/favicon.png and b/web/favicon.png differ