File tree Expand file tree Collapse file tree 4 files changed +4
-6
lines changed Expand file tree Collapse file tree 4 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -12,8 +12,7 @@ import 'package:ht_dashboard/app_configuration/bloc/app_configuration_bloc.dart'
12
12
import 'package:ht_dashboard/authentication/bloc/authentication_bloc.dart' ;
13
13
import 'package:ht_dashboard/l10n/app_localizations.dart' ;
14
14
import 'package:ht_dashboard/router/router.dart' ;
15
- import 'package:ht_dashboard/shared/theme/app_theme.dart'
16
- as app_theme_extension; // Import for app_theme.dart
15
+ // Import for app_theme.dart
17
16
import 'package:ht_dashboard/shared/theme/app_theme.dart' ;
18
17
import 'package:ht_data_repository/ht_data_repository.dart' ;
19
18
import 'package:ht_kv_storage_service/ht_kv_storage_service.dart' ;
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ class _AppConfigurationPageState extends State<AppConfigurationPage> {
43
43
style: Theme .of (context).textTheme.headlineSmall,
44
44
),
45
45
bottom: PreferredSize (
46
- preferredSize: Size .fromHeight (kToolbarHeight + AppSpacing .lg),
46
+ preferredSize: const Size .fromHeight (kToolbarHeight + AppSpacing .lg),
47
47
child: Padding (
48
48
padding: const EdgeInsets .only (
49
49
left: AppSpacing .lg,
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import 'package:ht_dashboard/content_management/view/headlines_page.dart';
4
4
import 'package:ht_dashboard/content_management/view/sources_page.dart' ;
5
5
import 'package:ht_dashboard/l10n/l10n.dart' ;
6
6
import 'package:ht_dashboard/shared/constants/app_spacing.dart' ;
7
- import 'package:ht_dashboard/shared/theme/app_theme.dart' ;
8
7
9
8
/// {@template content_management_page}
10
9
/// A page for Content Management with tabbed navigation for sub-sections.
@@ -40,7 +39,7 @@ class _ContentManagementPageState extends State<ContentManagementPage>
40
39
appBar: AppBar (
41
40
title: Text (l10n.contentManagement),
42
41
bottom: PreferredSize (
43
- preferredSize: Size .fromHeight (kTextTabBarHeight + AppSpacing .lg),
42
+ preferredSize: const Size .fromHeight (kTextTabBarHeight + AppSpacing .lg),
44
43
child: Column (
45
44
crossAxisAlignment: CrossAxisAlignment .start,
46
45
children: [
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ class _SettingsView extends StatelessWidget {
38
38
appBar: AppBar (
39
39
title: Text (l10n.settings),
40
40
bottom: PreferredSize (
41
- preferredSize: Size .fromHeight (kToolbarHeight + AppSpacing .lg),
41
+ preferredSize: const Size .fromHeight (kToolbarHeight + AppSpacing .lg),
42
42
child: Padding (
43
43
padding: const EdgeInsets .only (
44
44
left: AppSpacing .lg,
You can’t perform that action at this time.
0 commit comments