🐛 Fix bottom navigation everywhere

This commit is contained in:
2024-06-27 15:50:13 +08:00
parent b913c6a432
commit f239fbbed6
3 changed files with 18 additions and 9 deletions

View File

@ -24,6 +24,9 @@ abstract class AppNavigation {
page: 'account',
),
];
static List<String> get destinationPages =>
AppNavigation.destinations.map((x) => x.page).toList();
}
class AppNavigationDestination {