15 lines
455 B
Dart
15 lines
455 B
Dart
library fires.globals;
|
|
|
|
import 'dart:async';
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:shared_preferences/shared_preferences.dart';
|
|
|
|
String appVersion;
|
|
|
|
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();
|
|
bool isDevelopment = false;
|