Skip to content

Commit 67f11bb

Browse files
committed
style: format
1 parent fe944f3 commit 67f11bb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/app/bloc/app_bloc.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ class AppBloc extends Bloc<AppEvent, AppState> {
419419
// Perform the standard data fetch if we are not in demo mode, or if a
420420
// migration just occurred (to load the migrated data).
421421
// This avoids a redundant fetch in the demo initialization path, which
422-
// handles its own data fetching after creating fixture data.
422+
// handles its own data fetching after creating fixture data.
423423
if (!isDemoMode || isMigration) {
424424
await _fetchAndSetUserData(newUser, emit);
425425
}

lib/headlines-search/view/headline_search_delegate.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class HeadlineSearchDelegate extends SearchDelegate<void> {
6262
/// Builds the main content area for search results and suggestions.
6363
Widget _buildSearchResults(BuildContext context) {
6464
final l10n = AppLocalizationsX(context).l10n;
65-
65+
6666
// Provide the BLoC instance to the widget tree.
6767
return BlocProvider.value(
6868
value: headlineSearchBloc,

lib/router/router.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ import 'package:core/core.dart' hide AppStatus;
33
import 'package:data_repository/data_repository.dart';
44
import 'package:flutter/material.dart';
55
import 'package:flutter_bloc/flutter_bloc.dart';
6+
import 'package:flutter_news_app_mobile_client_full_source_code/account/view/account_page.dart';
67
import 'package:flutter_news_app_mobile_client_full_source_code/account/view/manage_followed_items/countries/add_country_to_follow_page.dart';
78
import 'package:flutter_news_app_mobile_client_full_source_code/account/view/manage_followed_items/countries/followed_countries_list_page.dart';
89
import 'package:flutter_news_app_mobile_client_full_source_code/account/view/manage_followed_items/manage_followed_items_page.dart';
9-
import 'package:flutter_news_app_mobile_client_full_source_code/account/view/account_page.dart';
1010
import 'package:flutter_news_app_mobile_client_full_source_code/account/view/manage_followed_items/sources/add_source_to_follow_page.dart';
1111
import 'package:flutter_news_app_mobile_client_full_source_code/account/view/manage_followed_items/sources/followed_sources_list_page.dart';
1212
import 'package:flutter_news_app_mobile_client_full_source_code/account/view/manage_followed_items/topics/add_topic_to_follow_page.dart';

0 commit comments

Comments
 (0)