File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -76,12 +76,10 @@ class SavedFiltersPage extends StatelessWidget {
7676 },
7777 ),
7878 );
79- break ;
8079 case 'delete' :
8180 context.read <AppBloc >().add (
8281 SavedFilterDeleted (filterId: filter.id),
8382 );
84- break ;
8583 }
8684 },
8785 itemBuilder: (BuildContext context) =>
Original file line number Diff line number Diff line change @@ -944,7 +944,9 @@ class AppBloc extends Bloc<AppEvent, AppState> {
944944 // Dispatch the existing event to handle persistence and state updates.
945945 // This reuses the existing logic for updating user preferences.
946946 add (AppUserContentPreferencesChanged (preferences: updatedPreferences));
947- _logger.info ('[AppBloc] Dispatched AppUserContentPreferencesChanged '
948- 'with reordered filters.' );
947+ _logger.info (
948+ '[AppBloc] Dispatched AppUserContentPreferencesChanged '
949+ 'with reordered filters.' ,
950+ );
949951 }
950952}
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import 'package:flutter_news_app_mobile_client_full_source_code/account/view/man
1111import 'package:flutter_news_app_mobile_client_full_source_code/account/view/manage_followed_items/sources/followed_sources_list_page.dart' ;
1212import 'package:flutter_news_app_mobile_client_full_source_code/account/view/manage_followed_items/topics/add_topic_to_follow_page.dart' ;
1313import 'package:flutter_news_app_mobile_client_full_source_code/account/view/manage_followed_items/topics/followed_topics_list_page.dart' ;
14+ import 'package:flutter_news_app_mobile_client_full_source_code/account/view/saved_filters_page.dart' ;
1415import 'package:flutter_news_app_mobile_client_full_source_code/account/view/saved_headlines_page.dart' ;
1516import 'package:flutter_news_app_mobile_client_full_source_code/ads/ad_service.dart' ;
1617import 'package:flutter_news_app_mobile_client_full_source_code/ads/inline_ad_cache_service.dart' ;
@@ -32,7 +33,6 @@ import 'package:flutter_news_app_mobile_client_full_source_code/headlines-feed/b
3233import 'package:flutter_news_app_mobile_client_full_source_code/headlines-feed/view/country_filter_page.dart' ;
3334import 'package:flutter_news_app_mobile_client_full_source_code/headlines-feed/view/headlines_feed_page.dart' ;
3435import 'package:flutter_news_app_mobile_client_full_source_code/headlines-feed/view/headlines_filter_page.dart' ;
35- import 'package:flutter_news_app_mobile_client_full_source_code/account/view/saved_filters_page.dart' ;
3636import 'package:flutter_news_app_mobile_client_full_source_code/headlines-feed/view/source_filter_page.dart' ;
3737import 'package:flutter_news_app_mobile_client_full_source_code/headlines-feed/view/source_list_filter_page.dart' ;
3838import 'package:flutter_news_app_mobile_client_full_source_code/headlines-feed/view/topic_filter_page.dart' ;
You can’t perform that action at this time.
0 commit comments