💄 Reduce the space usage in account screen

This commit is contained in:
2025-12-25 00:00:25 +08:00
parent af23df6e48
commit 7071399cd8

View File

@@ -368,20 +368,22 @@ class AccountScreen extends HookConsumerWidget {
); );
}, },
}, },
{ if (!isWideScreen(context))
'icon': Symbols.files, {
'title': 'files', 'icon': Symbols.files,
'onTap': () { 'title': 'files',
context.goNamed('files'); 'onTap': () {
context.goNamed('files');
},
}, },
}, if (!isWideScreen(context))
{ {
'icon': Symbols.groups_3, 'icon': Symbols.groups_3,
'title': 'realms', 'title': 'realms',
'onTap': () { 'onTap': () {
context.goNamed('realmList'); context.goNamed('realmList');
},
}, },
},
{ {
'icon': Symbols.wallet, 'icon': Symbols.wallet,
'title': 'wallet', 'title': 'wallet',