🐛 Bug fixes on realm UI
This commit is contained in:
parent
ae4d9cf81a
commit
0c87bbbce1
@ -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()],
|
||||
|
Loading…
Reference in New Issue
Block a user