2024-08-05 08:00:16 +01:00
|
|
|
import 'package:flutter/material.dart';
|
2024-08-20 10:00:10 +01:00
|
|
|
import 'package:flutter_map/flutter_map.dart';
|
|
|
|
import "package:latlong2/latlong.dart";
|
2024-08-20 15:46:13 +01:00
|
|
|
import 'package:mobile/register.dart';
|
2024-08-20 13:04:40 +01:00
|
|
|
import "login.dart";
|
2024-08-05 08:00:16 +01:00
|
|
|
|
|
|
|
void main() {
|
|
|
|
runApp(const MyApp());
|
|
|
|
}
|
|
|
|
|
|
|
|
class MyApp extends StatelessWidget {
|
|
|
|
const MyApp({super.key});
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return MaterialApp(
|
|
|
|
title: 'H4 Flutter',
|
|
|
|
theme: ThemeData(
|
2024-08-20 13:04:40 +01:00
|
|
|
colorScheme: ColorScheme.fromSeed(seedColor: Colors.blue),
|
2024-08-05 08:00:16 +01:00
|
|
|
useMaterial3: true,
|
|
|
|
),
|
2024-08-20 13:04:40 +01:00
|
|
|
home: const MyHomePage(title: 'SkanTravels'),
|
2024-08-05 08:00:16 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class MyHomePage extends StatefulWidget {
|
|
|
|
const MyHomePage({super.key, required this.title});
|
|
|
|
|
|
|
|
final String title;
|
|
|
|
|
|
|
|
@override
|
|
|
|
State<MyHomePage> createState() => _MyHomePageState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _MyHomePageState extends State<MyHomePage> {
|
2024-08-20 15:46:13 +01:00
|
|
|
int _selectedIndex = 0;
|
|
|
|
|
|
|
|
void _onItemTapped(int index) {
|
|
|
|
setState(() {
|
|
|
|
_selectedIndex = index;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-08-05 08:00:16 +01:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Scaffold(
|
|
|
|
appBar: AppBar(
|
|
|
|
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
|
|
|
|
title: Text(widget.title),
|
|
|
|
),
|
2024-08-20 15:46:13 +01:00
|
|
|
drawer: navigationMenu,
|
2024-08-20 10:00:10 +01:00
|
|
|
body: FlutterMap(
|
2024-08-20 15:46:13 +01:00
|
|
|
options: const MapOptions(
|
|
|
|
initialCenter: LatLng(55.9397, 9.5156), initialZoom: 7.0),
|
2024-08-20 10:00:10 +01:00
|
|
|
children: [
|
|
|
|
TileLayer(
|
|
|
|
urlTemplate: 'https://tile.openstreetmap.org/{z}/{x}/{y}.png',
|
|
|
|
userAgentPackageName: 'dev.fleaflet.flutter_map.example',
|
|
|
|
)
|
|
|
|
],
|
2024-08-05 08:00:16 +01:00
|
|
|
),
|
|
|
|
floatingActionButton: Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.end,
|
|
|
|
children: [
|
|
|
|
FloatingActionButton(
|
2024-08-20 13:04:40 +01:00
|
|
|
onPressed: () {
|
2024-08-20 15:46:13 +01:00
|
|
|
Navigator.push(
|
|
|
|
context,
|
|
|
|
MaterialPageRoute(
|
|
|
|
builder: (context) => const LoginPage(title: "Login")));
|
2024-08-20 13:04:40 +01:00
|
|
|
},
|
|
|
|
tooltip: 'Login',
|
|
|
|
child: const Icon(Icons.login),
|
2024-08-05 08:00:16 +01:00
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
2024-08-20 15:46:13 +01:00
|
|
|
|
|
|
|
Drawer get navigationMenu => Drawer(
|
|
|
|
child: ListView(
|
|
|
|
padding: EdgeInsets.zero,
|
|
|
|
children: [
|
|
|
|
const DrawerHeader(
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
color: Colors.blue,
|
|
|
|
),
|
|
|
|
child: Text('Drawer Header'),
|
|
|
|
),
|
|
|
|
ListTile(
|
|
|
|
title: const Text('Home'),
|
|
|
|
leading: const Icon(Icons.home),
|
|
|
|
selected: _selectedIndex == 0,
|
|
|
|
onTap: () {
|
|
|
|
// Update the state of the app
|
|
|
|
_onItemTapped(0);
|
|
|
|
// Then close the drawer
|
|
|
|
Navigator.pop(context);
|
|
|
|
},
|
|
|
|
),
|
|
|
|
ListTile(
|
|
|
|
title: const Text('Favourites'),
|
|
|
|
leading: const Icon(Icons.star),
|
|
|
|
selected: _selectedIndex == 1,
|
|
|
|
onTap: () {
|
|
|
|
// Update the state of the app
|
|
|
|
_onItemTapped(1);
|
|
|
|
// Then close the drawer
|
|
|
|
Navigator.pop(context);
|
|
|
|
},
|
|
|
|
),
|
|
|
|
ListTile(
|
|
|
|
title: const Text('Profile'),
|
|
|
|
leading: const Icon(Icons.person),
|
|
|
|
selected: _selectedIndex == 2,
|
|
|
|
onTap: () {
|
|
|
|
// Update the state of the app
|
|
|
|
_onItemTapped(2);
|
|
|
|
// Then close the drawer
|
|
|
|
Navigator.pop(context);
|
|
|
|
},
|
|
|
|
),
|
|
|
|
const Divider(
|
|
|
|
color: Colors.grey,
|
|
|
|
thickness: 2,
|
|
|
|
indent: 40,
|
|
|
|
),
|
|
|
|
ListTile(
|
|
|
|
title: const Text('Register'),
|
|
|
|
leading: const Icon(Icons.add_box_outlined),
|
|
|
|
selected: _selectedIndex == 3,
|
|
|
|
onTap: () {
|
|
|
|
// Update the state of the app
|
|
|
|
_onItemTapped(3);
|
|
|
|
// Then close the drawer
|
|
|
|
Navigator.push(
|
|
|
|
context,
|
|
|
|
MaterialPageRoute(
|
|
|
|
builder: (context) =>
|
|
|
|
const RegisterPage(title: "Register")));
|
|
|
|
},
|
|
|
|
),
|
|
|
|
ListTile(
|
|
|
|
title: const Text('Login'),
|
|
|
|
leading: const Icon(Icons.login),
|
|
|
|
selected: _selectedIndex == 4,
|
|
|
|
onTap: () {
|
|
|
|
// Update the state of the app
|
|
|
|
_onItemTapped(4);
|
|
|
|
// Then close the drawer
|
|
|
|
Navigator.push(
|
|
|
|
context,
|
|
|
|
MaterialPageRoute(
|
|
|
|
builder: (context) => const LoginPage(title: "Login")));
|
|
|
|
},
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
2024-08-05 08:00:16 +01:00
|
|
|
}
|