12 lines
297 B
Dart
12 lines
297 B
Dart
import '../application/application.dart';
|
|
import 'di.dart';
|
|
|
|
void registerCubits() {
|
|
// Navigation
|
|
sl.registerFactory(() => NavigationCubit());
|
|
|
|
//Notiications
|
|
// sl.registerLazySingleton(() => FlutterLocalNotificationsPlugin());
|
|
// sl.registerFactory(() => NotificationsCubit(sl()));
|
|
}
|