2024-05-18 10:17:16 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:get/utils.dart';
|
2024-10-04 19:12:47 +00:00
|
|
|
import 'package:solian/widgets/navigation/app_account_widget.dart';
|
2024-05-18 10:17:16 +00:00
|
|
|
|
|
|
|
abstract class AppNavigation {
|
|
|
|
static List<AppNavigationDestination> destinations = [
|
|
|
|
AppNavigationDestination(
|
2024-10-04 19:12:47 +00:00
|
|
|
icon: const Icon(Icons.dashboard),
|
2024-10-05 17:17:49 +00:00
|
|
|
label: 'dashboardNav'.tr,
|
2024-09-02 15:11:40 +00:00
|
|
|
page: 'dashboard',
|
|
|
|
),
|
|
|
|
AppNavigationDestination(
|
2024-10-04 19:12:47 +00:00
|
|
|
icon: const Icon(Icons.explore),
|
2024-09-23 14:43:13 +00:00
|
|
|
label: 'explore'.tr,
|
|
|
|
page: 'explore',
|
2024-05-18 10:17:16 +00:00
|
|
|
),
|
2024-07-13 10:54:08 +00:00
|
|
|
AppNavigationDestination(
|
2024-10-04 19:12:47 +00:00
|
|
|
icon: const Icon(Icons.forum),
|
2024-09-13 15:19:33 +00:00
|
|
|
label: 'chat'.tr,
|
2024-07-13 10:54:08 +00:00
|
|
|
page: 'chat',
|
|
|
|
),
|
2024-10-05 07:11:48 +00:00
|
|
|
AppNavigationDestination(
|
|
|
|
icon: const Icon(Icons.workspaces),
|
|
|
|
label: 'realms'.tr,
|
|
|
|
page: 'realms',
|
|
|
|
),
|
2024-10-04 19:12:47 +00:00
|
|
|
AppNavigationDestination(
|
|
|
|
icon: const AppAccountWidget(),
|
2024-10-05 17:17:49 +00:00
|
|
|
label: 'accountNav'.tr,
|
2024-10-04 19:12:47 +00:00
|
|
|
page: 'account',
|
|
|
|
),
|
2024-05-18 10:17:16 +00:00
|
|
|
];
|
2024-06-27 07:50:13 +00:00
|
|
|
|
|
|
|
static List<String> get destinationPages =>
|
|
|
|
AppNavigation.destinations.map((x) => x.page).toList();
|
2024-05-18 10:17:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class AppNavigationDestination {
|
2024-10-04 19:12:47 +00:00
|
|
|
final Widget icon;
|
2024-05-18 10:17:16 +00:00
|
|
|
final String label;
|
|
|
|
final String page;
|
|
|
|
|
2024-05-28 14:13:23 +00:00
|
|
|
AppNavigationDestination({
|
|
|
|
required this.icon,
|
|
|
|
required this.label,
|
|
|
|
required this.page,
|
|
|
|
});
|
2024-05-18 10:17:16 +00:00
|
|
|
}
|