wip countdown timer

This commit is contained in:
2024-03-26 22:57:05 +01:00
parent 26380dc55b
commit 4bf05fb655
11 changed files with 125 additions and 88 deletions

View File

@ -1,11 +1,14 @@
import 'package:flutter/cupertino.dart';
import 'package:flutter_map/flutter_map.dart';
class MapState extends ChangeNotifier {
bool _isLocationLock = false;
bool _isCurrentlyFetchin = true;
bool _isCurrentlyFetchin = false;
final MapController _mapController = MapController();
bool get followLocation => _isLocationLock;
bool get isCurrentlyFetching => _isCurrentlyFetchin;
MapController get getMapController => _mapController;
toggleLocationLock() {
_isLocationLock = !_isLocationLock;