Skip to content

Commit ae3897a

Browse files
committed
chore: misc
1 parent a727811 commit ae3897a

File tree

10 files changed

+12
-8
lines changed

10 files changed

+12
-8
lines changed

lib/router/router.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ import 'package:flutter_news_app_web_dashboard_full_source_code/local_ads_manage
3333
import 'package:flutter_news_app_web_dashboard_full_source_code/overview/view/overview_page.dart';
3434
import 'package:flutter_news_app_web_dashboard_full_source_code/router/routes.dart';
3535
import 'package:flutter_news_app_web_dashboard_full_source_code/settings/view/settings_page.dart';
36-
import 'package:flutter_news_app_web_dashboard_full_source_code/shared/selection_page/searchable_selection_page.dart';
37-
import 'package:flutter_news_app_web_dashboard_full_source_code/shared/selection_page/selection_page_arguments.dart';
36+
import 'package:flutter_news_app_web_dashboard_full_source_code/shared/widgets/selection_page/searchable_selection_page.dart';
37+
import 'package:flutter_news_app_web_dashboard_full_source_code/shared/widgets/selection_page/selection_page_arguments.dart';
3838
import 'package:go_router/go_router.dart';
3939

4040
/// Creates and configures the GoRouter instance for the application.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1+
export 'ad_platform_type_l10n.dart';
12
export 'app_user_role_l10n.dart';
23
export 'content_status_l10n.dart';
34
export 'feed_decorator_type_l10n.dart';
45
export 'in_article_ad_slot_type_l10n.dart';
6+
export 'local_ad_to_ad_type.dart';
57
export 'source_type_l10n.dart';
68
export 'string_truncate.dart';

lib/shared/shared.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
export 'constants/constants.dart';
22
export 'extensions/extensions.dart';
33
export 'services/services.dart';
4+
export 'widgets/widgets.dart';

lib/shared/widgets/searchable_selection_input.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ import 'package:data_repository/data_repository.dart';
33
import 'package:flutter/material.dart';
44
import 'package:flutter_news_app_web_dashboard_full_source_code/l10n/l10n.dart';
55
import 'package:flutter_news_app_web_dashboard_full_source_code/router/routes.dart';
6-
import 'package:flutter_news_app_web_dashboard_full_source_code/shared/selection_page/searchable_selection_page.dart'
6+
import 'package:flutter_news_app_web_dashboard_full_source_code/shared/widgets/selection_page/searchable_selection_page.dart'
77
show SearchableSelectionPage;
8-
import 'package:flutter_news_app_web_dashboard_full_source_code/shared/selection_page/selection_page_arguments.dart';
8+
import 'package:flutter_news_app_web_dashboard_full_source_code/shared/widgets/selection_page/selection_page_arguments.dart';
99
import 'package:go_router/go_router.dart';
1010

1111
/// {@template searchable_selection_input}

lib/shared/selection_page/bloc/searchable_selection_bloc.dart renamed to lib/shared/widgets/selection_page/bloc/searchable_selection_bloc.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import 'package:core/core.dart';
66
import 'package:data_repository/data_repository.dart';
77
import 'package:equatable/equatable.dart';
88
import 'package:flutter/foundation.dart';
9-
import 'package:flutter_news_app_web_dashboard_full_source_code/shared/selection_page/selection_page_arguments.dart';
9+
import 'package:flutter_news_app_web_dashboard_full_source_code/shared/widgets/selection_page/selection_page_arguments.dart';
1010
import 'package:rxdart/rxdart.dart';
1111

1212
part 'searchable_selection_event.dart';

lib/shared/selection_page/bloc/searchable_selection_event.dart renamed to lib/shared/widgets/selection_page/bloc/searchable_selection_event.dart

File renamed without changes.

lib/shared/selection_page/bloc/searchable_selection_state.dart renamed to lib/shared/widgets/selection_page/bloc/searchable_selection_state.dart

File renamed without changes.

lib/shared/selection_page/searchable_selection_page.dart renamed to lib/shared/widgets/selection_page/searchable_selection_page.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import 'package:data_repository/data_repository.dart' show DataRepository;
22
import 'package:flutter/material.dart';
33
import 'package:flutter_bloc/flutter_bloc.dart';
44
import 'package:flutter_news_app_web_dashboard_full_source_code/l10n/l10n.dart';
5-
import 'package:flutter_news_app_web_dashboard_full_source_code/shared/selection_page/bloc/searchable_selection_bloc.dart';
6-
import 'package:flutter_news_app_web_dashboard_full_source_code/shared/selection_page/selection_page_arguments.dart';
5+
import 'package:flutter_news_app_web_dashboard_full_source_code/shared/widgets/selection_page/bloc/searchable_selection_bloc.dart';
6+
import 'package:flutter_news_app_web_dashboard_full_source_code/shared/widgets/selection_page/selection_page_arguments.dart';
77
import 'package:ui_kit/ui_kit.dart';
88

99
/// {@template searchable_selection_page}

lib/shared/selection_page/selection_page_arguments.dart renamed to lib/shared/widgets/selection_page/selection_page_arguments.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import 'package:core/core.dart';
22
import 'package:data_repository/data_repository.dart';
33
import 'package:equatable/equatable.dart';
44
import 'package:flutter/material.dart';
5-
import 'package:flutter_news_app_web_dashboard_full_source_code/shared/selection_page/searchable_selection_page.dart'
5+
import 'package:flutter_news_app_web_dashboard_full_source_code/shared/widgets/selection_page/searchable_selection_page.dart'
66
show SearchableSelectionPage;
77

88
/// {@template selection_page_arguments}

lib/shared/widgets/widgets.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export 'searchable_selection_input.dart';

0 commit comments

Comments
 (0)