diff --git a/packages/neon/neon_files/lib/neon_files.dart b/packages/neon/neon_files/lib/neon_files.dart index a0ef69ce..b5e5abb4 100644 --- a/packages/neon/neon_files/lib/neon_files.dart +++ b/packages/neon/neon_files/lib/neon_files.dart @@ -62,13 +62,7 @@ class FilesApp extends AppImplementation { ); @override - Widget buildPage(final BuildContext context, final AppsBloc appsBloc) { - final bloc = Provider.of(context, listen: false); - - return FilesMainPage( - bloc: bloc, - ); - } + Widget buildPage(final BuildContext context, final AppsBloc appsBloc) => const FilesMainPage(); @override BehaviorSubject? getUnreadCounter(final AppsBloc appsBloc) => null; diff --git a/packages/neon/neon_files/lib/pages/main.dart b/packages/neon/neon_files/lib/pages/main.dart index 20c361eb..a9317fb6 100644 --- a/packages/neon/neon_files/lib/pages/main.dart +++ b/packages/neon/neon_files/lib/pages/main.dart @@ -2,22 +2,22 @@ part of '../neon_files.dart'; class FilesMainPage extends StatefulWidget { const FilesMainPage({ - required this.bloc, super.key, }); - final FilesBloc bloc; - @override State createState() => _FilesMainPageState(); } class _FilesMainPageState extends State { + late FilesBloc bloc; + @override void initState() { super.initState(); + bloc = Provider.of(context, listen: false); - widget.bloc.errors.listen((final error) { + bloc.errors.listen((final error) { NeonException.showSnackbar(context, error); }); } @@ -25,10 +25,10 @@ class _FilesMainPageState extends State { @override Widget build(final BuildContext context) => Scaffold( body: FilesBrowserView( - bloc: widget.bloc.browser, - filesBloc: widget.bloc, + bloc: bloc.browser, + filesBloc: bloc, onPickFile: (final details) async { - final sizeWarning = widget.bloc.options.downloadSizeWarning.value; + final sizeWarning = bloc.options.downloadSizeWarning.value; if (sizeWarning != null && details.size > sizeWarning) { // ignore: use_build_context_synchronously if (!(await showConfirmationDialog( @@ -42,7 +42,7 @@ class _FilesMainPageState extends State { return; } } - widget.bloc.openFile(details.path, details.etag!, details.mimeType); + bloc.openFile(details.path, details.etag!, details.mimeType); }, ), floatingActionButton: FloatingActionButton( @@ -50,8 +50,8 @@ class _FilesMainPageState extends State { await showDialog( context: context, builder: (final context) => FilesChooseCreateDialog( - bloc: widget.bloc, - basePath: widget.bloc.browser.path.value, + bloc: bloc, + basePath: bloc.browser.path.value, ), ); }, diff --git a/packages/neon/neon_news/lib/neon_news.dart b/packages/neon/neon_news/lib/neon_news.dart index 6ee7237c..8964428b 100644 --- a/packages/neon/neon_news/lib/neon_news.dart +++ b/packages/neon/neon_news/lib/neon_news.dart @@ -68,13 +68,7 @@ class NewsApp extends AppImplementation { ); @override - Widget buildPage(final BuildContext context, final AppsBloc appsBloc) { - final bloc = Provider.of(context, listen: false); - - return NewsMainPage( - bloc: bloc, - ); - } + Widget buildPage(final BuildContext context, final AppsBloc appsBloc) => const NewsMainPage(); @override BehaviorSubject getUnreadCounter(final AppsBloc appsBloc) => appsBloc.getAppBloc(this).unreadCounter; diff --git a/packages/neon/neon_news/lib/pages/main.dart b/packages/neon/neon_news/lib/pages/main.dart index 95cd00e4..64e11df1 100644 --- a/packages/neon/neon_news/lib/pages/main.dart +++ b/packages/neon/neon_news/lib/pages/main.dart @@ -2,24 +2,23 @@ part of '../neon_news.dart'; class NewsMainPage extends StatefulWidget { const NewsMainPage({ - required this.bloc, super.key, }); - final NewsBloc bloc; - @override State createState() => _NewsMainPageState(); } class _NewsMainPageState extends State { - late int _index = widget.bloc.options.defaultCategoryOption.value.index; + late NewsBloc bloc; + late int _index = bloc.options.defaultCategoryOption.value.index; @override void initState() { super.initState(); + final bloc = Provider.of(context, listen: false); - widget.bloc.errors.listen((final error) { + bloc.errors.listen((final error) { NeonException.showSnackbar(context, error); }); } @@ -28,21 +27,21 @@ class _NewsMainPageState extends State { Widget build(final BuildContext context) { final views = [ NewsArticlesView( - bloc: widget.bloc.mainArticlesBloc, - newsBloc: widget.bloc, + bloc: bloc.mainArticlesBloc, + newsBloc: bloc, ), NewsFoldersView( - bloc: widget.bloc, + bloc: bloc, ), NewsFeedsView( - bloc: widget.bloc, + bloc: bloc, ), ]; final floatingActionButtons = [ null, - NewsFolderFloatingActionButton(bloc: widget.bloc), - NewsFeedFloatingActionButton(bloc: widget.bloc), + NewsFolderFloatingActionButton(bloc: bloc), + NewsFeedFloatingActionButton(bloc: bloc), ]; return Scaffold( diff --git a/packages/neon/neon_notes/lib/neon_notes.dart b/packages/neon/neon_notes/lib/neon_notes.dart index 2989bbc9..e62d42a3 100644 --- a/packages/neon/neon_notes/lib/neon_notes.dart +++ b/packages/neon/neon_notes/lib/neon_notes.dart @@ -58,13 +58,7 @@ class NotesApp extends AppImplementation { ); @override - Widget buildPage(final BuildContext context, final AppsBloc appsBloc) { - final bloc = Provider.of(context, listen: false); - - return NotesMainPage( - bloc: bloc, - ); - } + Widget buildPage(final BuildContext context, final AppsBloc appsBloc) => const NotesMainPage(); @override BehaviorSubject? getUnreadCounter(final AppsBloc appsBloc) => null; diff --git a/packages/neon/neon_notes/lib/pages/main.dart b/packages/neon/neon_notes/lib/pages/main.dart index 2ec42ca6..eecab6b3 100644 --- a/packages/neon/neon_notes/lib/pages/main.dart +++ b/packages/neon/neon_notes/lib/pages/main.dart @@ -2,24 +2,24 @@ part of '../neon_notes.dart'; class NotesMainPage extends StatefulWidget { const NotesMainPage({ - required this.bloc, super.key, }); - final NotesBloc bloc; - @override State createState() => _NotesMainPageState(); } class _NotesMainPageState extends State { - late int _index = widget.bloc.options.defaultCategoryOption.value.index; + late NotesBloc bloc; + late int _index = bloc.options.defaultCategoryOption.value.index; @override void initState() { super.initState(); - widget.bloc.errors.listen((final error) { + bloc = Provider.of(context, listen: false); + + bloc.errors.listen((final error) { handleNotesException(context, error); }); } @@ -28,15 +28,15 @@ class _NotesMainPageState extends State { Widget build(final BuildContext context) { final views = [ NotesView( - bloc: widget.bloc, + bloc: bloc, ), NotesCategoriesView( - bloc: widget.bloc, + bloc: bloc, ), ]; final floatingActionButtons = [ - NotesFloatingActionButton(bloc: widget.bloc), + NotesFloatingActionButton(bloc: bloc), null, ]; diff --git a/packages/neon/neon_notifications/lib/neon_notifications.dart b/packages/neon/neon_notifications/lib/neon_notifications.dart index 45909d57..02797eda 100644 --- a/packages/neon/neon_notifications/lib/neon_notifications.dart +++ b/packages/neon/neon_notifications/lib/neon_notifications.dart @@ -37,13 +37,7 @@ class NotificationsApp extends NotificationsAppInterface { ); @override - Widget buildPage(final BuildContext context, final AppsBloc appsBloc) { - final bloc = Provider.of(context, listen: false); - - return NotificationsMainPage( - bloc: bloc, - ); - } + Widget buildPage(final BuildContext context, final AppsBloc appsBloc) => const NotificationsMainPage(); @override BehaviorSubject getUnreadCounter(final AppsBloc appsBloc) => diff --git a/packages/neon/neon_notifications/lib/pages/main.dart b/packages/neon/neon_notifications/lib/pages/main.dart index ab9b73fd..6412354b 100644 --- a/packages/neon/neon_notifications/lib/pages/main.dart +++ b/packages/neon/neon_notifications/lib/pages/main.dart @@ -2,34 +2,35 @@ part of '../neon_notifications.dart'; class NotificationsMainPage extends StatefulWidget { const NotificationsMainPage({ - required this.bloc, super.key, }); - final NotificationsBloc bloc; - @override State createState() => _NotificationsMainPageState(); } class _NotificationsMainPageState extends State { + late NotificationsBloc bloc; + @override void initState() { super.initState(); - widget.bloc.errors.listen((final error) { + bloc = Provider.of(context, listen: false); + + bloc.errors.listen((final error) { NeonException.showSnackbar(context, error); }); } @override Widget build(final BuildContext context) => ResultBuilder>( - stream: widget.bloc.notifications, + stream: bloc.notifications, builder: (final context, final notifications) => Scaffold( resizeToAvoidBottomInset: false, floatingActionButton: FloatingActionButton( onPressed: () async { - widget.bloc.deleteAllNotifications(); + bloc.deleteAllNotifications(); }, tooltip: AppLocalizations.of(context).notificationsDismissAll, child: const Icon(MdiIcons.checkAll), @@ -40,7 +41,7 @@ class _NotificationsMainPageState extends State { items: notifications.data, isLoading: notifications.loading, error: notifications.error, - onRefresh: widget.bloc.refresh, + onRefresh: bloc.refresh, builder: _buildNotification, ), ), @@ -113,7 +114,7 @@ class _NotificationsMainPageState extends State { } }, onLongPress: () { - widget.bloc.deleteNotification(notification.notificationId); + bloc.deleteNotification(notification.notificationId); }, ); }