20 lines
585 B
Dart
20 lines
585 B
Dart
library fires.globals;
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:get_it/get_it.dart';
|
|
|
|
import 'yourLocation.dart';
|
|
|
|
String gmapKey;
|
|
String firesApiKey;
|
|
String firesApiUrl;
|
|
final String appVersion = '0.0.1';
|
|
|
|
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();
|
|
List<YourLocation> yourLocations = [];
|
|
final GetIt getIt = new GetIt();
|
|
bool isDevelopment = false;
|