|
|
|
@ -25,13 +25,13 @@ class NotificationsApp extends AppImplementation<NotificationsBloc, Notification
|
|
|
|
|
NotificationsApp(); |
|
|
|
|
|
|
|
|
|
@override |
|
|
|
|
String id = AppIDs.notifications; |
|
|
|
|
final String id = AppIDs.notifications; |
|
|
|
|
|
|
|
|
|
@override |
|
|
|
|
LocalizationsDelegate localizationsDelegate = AppLocalizations.delegate; |
|
|
|
|
final LocalizationsDelegate localizationsDelegate = AppLocalizations.delegate; |
|
|
|
|
|
|
|
|
|
@override |
|
|
|
|
List<Locale> supportedLocales = AppLocalizations.supportedLocales; |
|
|
|
|
final List<Locale> supportedLocales = AppLocalizations.supportedLocales; |
|
|
|
|
|
|
|
|
|
@override |
|
|
|
|
late final NotificationsAppSpecificOptions options = NotificationsAppSpecificOptions(storage); |
|
|
|
@ -43,10 +43,10 @@ class NotificationsApp extends AppImplementation<NotificationsBloc, Notification
|
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
@override |
|
|
|
|
Widget get page => const NotificationsMainPage(); |
|
|
|
|
final Widget page = const NotificationsMainPage(); |
|
|
|
|
|
|
|
|
|
@override |
|
|
|
|
RouteBase get route => $notificationsAppRoute; |
|
|
|
|
final RouteBase route = $notificationsAppRoute; |
|
|
|
|
|
|
|
|
|
@override |
|
|
|
|
BehaviorSubject<int> getUnreadCounter(final NotificationsBloc bloc) => bloc.unreadCounter; |
|
|
|
|