use structs to draw custom map pointers
Some checks failed
Build and push docker image / Build (pull_request) Failing after 2m10s
Build and release APK / Build APK (pull_request) Successful in 5m22s
Build web / Build Web (pull_request) Successful in 1m14s

This commit is contained in:
2024-06-01 19:58:25 +02:00
parent 8bc7da0b3e
commit c1d74ab227
9 changed files with 71 additions and 128 deletions

View File

@@ -46,7 +46,8 @@ class _BasePageState extends State<BasePage> {
child: const Text('The fanciest navigation!'),
),
ListTile(
title: const Text('Home'),
title: const Text('Start'),
leading: const Icon(Icons.map),
selected: _selectedIndex == 0,
onTap: () {
// Update the state of the app
@@ -57,7 +58,8 @@ class _BasePageState extends State<BasePage> {
},
),
ListTile(
title: const Text('Business'),
title: const Text('How to use'),
leading: Icon(Icons.help),
selected: _selectedIndex == 1,
onTap: () {
// Update the state of the app
@@ -68,8 +70,6 @@ class _BasePageState extends State<BasePage> {
Navigator.pop(context);
},
),
// add a whitespace so that the settings are at the bottom
const Divider(),
ListTile(
title: const Text('Settings'),