From b62ed98375711164729a1e829ade08ca39cbd647 Mon Sep 17 00:00:00 2001 From: Julian Mutter Date: Fri, 6 Feb 2026 17:30:46 +0100 Subject: [PATCH] Fix offline symbol on AppBar --- lib/features/home/home_page.dart | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/lib/features/home/home_page.dart b/lib/features/home/home_page.dart index 2dd9b74..5757a6b 100644 --- a/lib/features/home/home_page.dart +++ b/lib/features/home/home_page.dart @@ -194,14 +194,17 @@ class _HomePageState extends State with RouteAware { Widget build(BuildContext context) { return Scaffold( appBar: AppBar( - title: const Text('Sheetless'), - actions: [ - if (!_isOnline) - const Padding( - padding: EdgeInsets.only(right: 8), - child: Icon(Icons.cloud_off, color: Colors.orange), - ), - ], + title: Row( + mainAxisSize: MainAxisSize.min, + children: [ + const Text('Sheetless'), + if (!_isOnline) + const Padding( + padding: EdgeInsets.only(left: 8), + child: Icon(Icons.cloud_off, color: Colors.orange, size: 20), + ), + ], + ), ), endDrawer: AppDrawer( isShuffling: _isShuffling,