✨ Realms creation
This commit is contained in:
@ -13,6 +13,11 @@ abstract class AppNavigation {
|
||||
label: 'contact'.tr,
|
||||
page: 'contact',
|
||||
),
|
||||
AppNavigationDestination(
|
||||
icon: const Icon(Icons.workspaces),
|
||||
label: 'realms'.tr,
|
||||
page: 'realms',
|
||||
),
|
||||
AppNavigationDestination(
|
||||
icon: const Icon(Icons.account_circle),
|
||||
label: 'account'.tr,
|
||||
@ -26,6 +31,9 @@ class AppNavigationDestination {
|
||||
final String label;
|
||||
final String page;
|
||||
|
||||
AppNavigationDestination(
|
||||
{required this.icon, required this.label, required this.page});
|
||||
AppNavigationDestination({
|
||||
required this.icon,
|
||||
required this.label,
|
||||
required this.page,
|
||||
});
|
||||
}
|
||||
|
@ -23,6 +23,7 @@ class _AppNavigationBottomBarState extends State<AppNavigationBottomBar> {
|
||||
),
|
||||
)
|
||||
.toList(),
|
||||
type: BottomNavigationBarType.fixed,
|
||||
landscapeLayout: BottomNavigationBarLandscapeLayout.centered,
|
||||
currentIndex: _selectedIndex,
|
||||
showUnselectedLabels: false,
|
||||
|
Reference in New Issue
Block a user