skantravels/Mobile/lib/main.dart

133 lines
3.9 KiB
Dart
Raw Normal View History

import 'dart:convert';
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';
2024-08-21 11:49:38 +01:00
import 'package:latlong2/latlong.dart';
import 'package:mobile/favorites.dart';
2024-08-20 15:46:13 +01:00
import 'package:mobile/register.dart';
2024-08-21 11:49:38 +01:00
import 'login.dart';
2024-08-21 12:28:48 +01:00
import 'base/sidemenu.dart';
import 'profile.dart';
import 'api.dart' as api;
import 'models.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,
),
home: const MyHomePage(),
2024-08-21 12:28:48 +01:00
initialRoute: '/',
routes: {
'/home': (context) => const MyHomePage(),
2024-08-21 12:28:48 +01:00
'/profile': (context) => const ProfilePage(),
'/favorites': (context) => const FavoritesPage(),
'/login': (context) => const LoginPage(),
'/register': (context) => const RegisterPage(),
2024-08-21 12:28:48 +01:00
},
2024-08-05 08:00:16 +01:00
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key});
2024-08-05 08:00:16 +01:00
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
2024-08-21 11:49:38 +01:00
final GlobalKey<ScaffoldState> _scaffoldKey = GlobalKey<ScaffoldState>();
List<Favorite> _favorites = [];
2024-08-27 08:15:21 +01:00
LatLng? _selectedPoint;
void _showLocation(TapPosition _, LatLng point) {
setState(() => _selectedPoint = point);
}
@override
void didChangeDependencies() {
super.didChangeDependencies();
api.isLoggedIn(context).then((isLoggedIn) async {
if (!isLoggedIn || !mounted) return;
final response = await api.request(context, api.ApiService.app, 'GET', '/favorites', null);
if (response == null) return;
final List<dynamic> favorites = jsonDecode(response);
setState(() {
_favorites = favorites.map((favorite) => Favorite(favorite['id'], favorite['user_id'], favorite['lat'], favorite['lng'], favorite['name'], favorite['description'])).toList();
});
});
}
2024-08-05 08:00:16 +01:00
@override
Widget build(BuildContext context) {
2024-08-21 12:28:48 +01:00
return SideMenu(
selectedIndex: 0,
2024-08-21 12:28:48 +01:00
body: Scaffold(
2024-08-21 13:24:53 +01:00
key: _scaffoldKey,
//drawer: navigationMenu,
body: FlutterMap(
2024-08-27 08:15:21 +01:00
options: MapOptions(
initialCenter: const LatLng(55.9397, 9.5156),
initialZoom: 7.0,
onTap: _showLocation,
),
children: [
2024-08-21 12:28:48 +01:00
openStreetMapTileLayer,
2024-08-22 10:46:45 +01:00
..._favorites.map((favorite) =>
MarkerLayer(markers: [
Marker(
point: LatLng(favorite.lat, favorite.lng),
2024-08-27 07:53:56 +01:00
width: 30,
height: 50,
2024-08-22 10:46:45 +01:00
alignment: Alignment.center,
2024-08-27 07:53:56 +01:00
child: const Stack(
children: [
Icon(Icons.location_pin, size: 30, color: Colors.yellow),
Icon(Icons.location_on_outlined, size: 30, color: Colors.black),
]
),
2024-08-22 10:46:45 +01:00
)
2024-08-27 08:15:21 +01:00
]),
),
...(
_selectedPoint != null ? [
MarkerLayer(markers: [
Marker(
point: _selectedPoint!,
width: 30,
height: 50,
alignment: Alignment.center,
child: const Stack(
children: [
Icon(Icons.location_pin, size: 30, color: Colors.red),
Icon(Icons.location_on_outlined, size: 30, color: Colors.black),
]
),
)
]),
] : []
2024-08-22 10:46:45 +01:00
),
],
),
2024-08-21 12:28:48 +01:00
),
2024-08-05 08:00:16 +01:00
);
}
2024-08-20 15:46:13 +01:00
2024-08-21 12:28:48 +01:00
TileLayer get openStreetMapTileLayer => TileLayer(
2024-08-27 07:53:56 +01:00
urlTemplate: 'https://tile.openstreetmap.org/{z}/{x}/{y}.png',
userAgentPackageName: 'dev.fleaflet.flutter_map.example',
);
2024-08-05 08:00:16 +01:00
}