From 3ef175fbff0d171766279e1fb516454ece14d319 Mon Sep 17 00:00:00 2001 From: Nikolas Rimikis Date: Sat, 10 Jun 2023 15:12:52 +0200 Subject: [PATCH] neon: reformat home.dart --- packages/neon/neon/lib/src/pages/home.dart | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/packages/neon/neon/lib/src/pages/home.dart b/packages/neon/neon/lib/src/pages/home.dart index 620e6b7d..b28f7688 100644 --- a/packages/neon/neon/lib/src/pages/home.dart +++ b/packages/neon/neon/lib/src/pages/home.dart @@ -171,17 +171,9 @@ class _HomePageState extends State { stream: _appsBloc.notificationsAppImplementation, builder: (final context, final notificationsAppImplementation) => StreamBuilder( stream: _appsBloc.activeAppID, - builder: ( - final context, - final activeAppIDSnapshot, - ) => - StreamBuilder>( + builder: (final context, final activeAppIDSnapshot) => StreamBuilder>( stream: _accountsBloc.accounts, - builder: ( - final context, - final accountsSnapshot, - ) => - OptionBuilder( + builder: (final context, final accountsSnapshot) => OptionBuilder( option: _globalOptions.navigationMode, builder: (final context, final navigationMode) { final accounts = accountsSnapshot.data;