Simple NavigationBar and placeholder map view

This commit is contained in:
2025-01-28 15:23:16 +01:00
parent 36dec2d0de
commit 9c9992919d
5 changed files with 95 additions and 47 deletions

11
lib/pages/map_page.dart Normal file
View File

@@ -0,0 +1,11 @@
import 'package:flutter/material.dart';
class MapPage extends StatelessWidget {
const MapPage({super.key});
static const routeName = '/map';
@override
Widget build(BuildContext context) {
return const Placeholder();
}
}