Add about page
This commit is contained in:
@@ -33,6 +33,10 @@ class DesktopWrapper extends HookConsumerWidget {
|
||||
icon: const Icon(Icons.settings),
|
||||
label: Text(t.settings.pageTitle.titleCase),
|
||||
),
|
||||
NavigationRailDestination(
|
||||
icon: const Icon(Icons.info),
|
||||
label: Text(t.about.pageTitle.titleCase),
|
||||
),
|
||||
];
|
||||
|
||||
return Scaffold(
|
||||
|
||||
@@ -42,6 +42,12 @@ class MobileWrapper extends HookConsumerWidget {
|
||||
selected: location == LogsRoute.path,
|
||||
onSelect: () => const LogsRoute().push(context),
|
||||
),
|
||||
DrawerTile(
|
||||
label: t.about.pageTitle.titleCase,
|
||||
icon: Icons.info,
|
||||
selected: location == AboutRoute.path,
|
||||
onSelect: () => const AboutRoute().push(context),
|
||||
),
|
||||
const Spacer(),
|
||||
Align(
|
||||
child: Column(
|
||||
|
||||
Reference in New Issue
Block a user