Implement map

This commit is contained in:
zontreck 2025-05-15 19:49:19 -07:00
parent 69e82fcf4c
commit a5fa4e0309
7 changed files with 184 additions and 57 deletions

View file

@ -6,11 +6,12 @@ import 'package:geolocator/geolocator.dart';
class TTConsts {
static get UPDATE_URL =>
"https://git.zontreck.com/AriasCreations/TimeTracker/raw/branch/main/latest-releases.json";
static const VERSION = "1.0.0-dev.7";
static const VERSION = "1.0.0-dev.8";
static bool UPDATE_AVAILABLE = false;
static UpdateChannel UPDATE_CHANNEL = UpdateChannel.alpha;
static final LocationSettings LOCATION_SETTINGS = LocationSettings(
accuracy: LocationAccuracy.bestForNavigation,
distanceFilter: 50,
);
static Future<void> checkUpdate() async {