Ability to cache currency selection (#5)

This commit is contained in:
2022-09-07 00:16:49 +01:00
committed by GitHub
parent 3c1ecd76c2
commit 5104fc674e
13 changed files with 415 additions and 172 deletions

View File

@@ -1,8 +1,13 @@
import 'package:flutter/material.dart';
import 'Home.dart';
import 'data/prefs/PreferenceProvider.dart';
import 'locator.dart';
void main() {
void main() async {
WidgetsFlutterBinding.ensureInitialized();
setupLocator();
await locator<PreferenceProvider>().init();
runApp(const MyApp());
}