diff --git a/lib/screens/account.dart b/lib/screens/account.dart index c4725049..1cc5923e 100644 --- a/lib/screens/account.dart +++ b/lib/screens/account.dart @@ -368,20 +368,22 @@ class AccountScreen extends HookConsumerWidget { ); }, }, - { - 'icon': Symbols.files, - 'title': 'files', - 'onTap': () { - context.goNamed('files'); + if (!isWideScreen(context)) + { + 'icon': Symbols.files, + 'title': 'files', + 'onTap': () { + context.goNamed('files'); + }, }, - }, - { - 'icon': Symbols.groups_3, - 'title': 'realms', - 'onTap': () { - context.goNamed('realmList'); + if (!isWideScreen(context)) + { + 'icon': Symbols.groups_3, + 'title': 'realms', + 'onTap': () { + context.goNamed('realmList'); + }, }, - }, { 'icon': Symbols.wallet, 'title': 'wallet',