From 35b1d6f6aa122000adb14adadb19e585defb0f13 Mon Sep 17 00:00:00 2001 From: Sara <sarasdj@stud.ntnu.no> Date: Mon, 8 Apr 2024 12:29:04 +0200 Subject: [PATCH] fix: connection variable initialisation --- app/lib/consts.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/consts.dart b/app/lib/consts.dart index 1e79c722..d1c7751a 100644 --- a/app/lib/consts.dart +++ b/app/lib/consts.dart @@ -17,7 +17,7 @@ List<Measurement> selectedMarkerList = []; LatLng mapCenter = LatLng(60.8000, 10.8471); DateTime ?lastUpdate; // Last time data was fetched from server List<String> lakeSearchOptions = []; // Init empty -bool internetConnection = false; +bool internetConnection = true; // Font settings const textColor = Colors.white; -- GitLab