18 lines
736 B
Dart
18 lines
736 B
Dart
library fires.globals;
|
|
import 'package:get_it/get_it.dart';
|
|
import 'dart:async';
|
|
import 'package:shared_preferences/shared_preferences.dart';
|
|
import 'basicLocation.dart';
|
|
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 List<BasicLocation> yourLocations = [];
|
|
final GetIt getIt = new GetIt();
|