🐛 Bug fixes on realm UI
This commit is contained in:
		| @@ -21,8 +21,8 @@ class RealmScreen extends StatelessWidget { | ||||
|  | ||||
|     return IndentScaffold( | ||||
|       title: realm.focusRealm?.name ?? 'Loading...', | ||||
|       hideDrawer: true, | ||||
|       noSafeArea: true, | ||||
|       hideDrawer: true, | ||||
|       fixedAppBarColor: SolianTheme.isLargeScreen(context), | ||||
|       appBarActions: realm.focusRealm != null | ||||
|           ? [ | ||||
|   | ||||
| @@ -18,7 +18,7 @@ class RealmListScreen extends StatelessWidget { | ||||
|   Widget build(BuildContext context) { | ||||
|     final realm = context.watch<RealmProvider>(); | ||||
|  | ||||
|     return realm.focusRealm == null | ||||
|     return realm.focusRealm == null || !SolianTheme.isLargeScreen(context) | ||||
|         ? IndentScaffold( | ||||
|             title: AppLocalizations.of(context)!.realm, | ||||
|             appBarActions: const [NotificationButton()], | ||||
|   | ||||
		Reference in New Issue
	
	Block a user