File tree 2 files changed +13
-15
lines changed
2 files changed +13
-15
lines changed Original file line number Diff line number Diff line change @@ -13,12 +13,10 @@ import 'package:flutter/widgets.dart';
13
13
void main () {
14
14
WidgetsFlutterBinding .ensureInitialized ();
15
15
16
- runApp (
17
- BlocApp (
18
- todosInteractor: TodosInteractor (
19
- FirestoreReactiveTodosRepository (Firestore .instance),
20
- ),
21
- userRepository: FirebaseUserRepository (FirebaseAuth .instance),
22
- )
23
- );
16
+ runApp (BlocApp (
17
+ todosInteractor: TodosInteractor (
18
+ FirestoreReactiveTodosRepository (Firestore .instance),
19
+ ),
20
+ userRepository: FirebaseUserRepository (FirebaseAuth .instance),
21
+ ));
24
22
}
Original file line number Diff line number Diff line change @@ -9,13 +9,13 @@ Future<void> main() async {
9
9
WidgetsFlutterBinding .ensureInitialized ();
10
10
11
11
runApp (
12
- MobxApp (
13
- repository: LocalStorageRepository (
14
- localStorage: LocalStorage (
15
- 'mobx_todos' ,
16
- FlutterKeyValueStore (await SharedPreferences .getInstance ()),
17
- ),
12
+ MobxApp (
13
+ repository: LocalStorageRepository (
14
+ localStorage: LocalStorage (
15
+ 'mobx_todos' ,
16
+ FlutterKeyValueStore (await SharedPreferences .getInstance ()),
18
17
),
19
18
),
20
- );
19
+ ),
20
+ );
21
21
}
You can’t perform that action at this time.
0 commit comments