Refactor. Fires marker calibration

This commit is contained in:
vjrj 2018-06-12 21:06:40 +02:00
parent 574c1afc33
commit f970c6b4fe
9 changed files with 128 additions and 51 deletions

View file

@ -8,11 +8,12 @@ import 'package:flutter/material.dart';
String gmapKey;
String firesApiKey;
String firesApiUrl;
String appName = 'All Against The Fire!';
String appVersion = '0.0.1';
String appLicense = "(c) 2017-2018 Comunes Association under the GNU Affero GPL v3";
Widget appMediumIcon = Image.asset('images/logo-200.png', width: 60.0, height: 60.0);
Widget appIcon = Image.asset('images/logo-200.png', width: 24.0, height: 24.0);
Future<SharedPreferences> prefs = SharedPreferences.getInstance();
final String appName = 'All Against The Fire!';
final String appVersion = '0.0.1';
final String appLicense = "(c) 2017-2018 Comunes Association under the GNU Affero GPL v3";
final Widget appMediumIcon = Image.asset('images/logo-200.png', width: 60.0, height: 60.0);
final Widget appIcon = Image.asset('images/logo-200.png', width: 24.0, height: 24.0);
final Future<SharedPreferences> prefs = SharedPreferences.getInstance();
final List<BasicLocation> yourLocations = [];
final GetIt getIt = new GetIt();
final bool isDevelopment = true;