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'
1212import 'package:ht_dashboard/authentication/bloc/authentication_bloc.dart' ;
1313import 'package:ht_dashboard/l10n/app_localizations.dart' ;
1414import '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
1716import 'package:ht_dashboard/shared/theme/app_theme.dart' ;
1817import 'package:ht_data_repository/ht_data_repository.dart' ;
1918import '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> {
4343 style: Theme .of (context).textTheme.headlineSmall,
4444 ),
4545 bottom: PreferredSize (
46- preferredSize: Size .fromHeight (kToolbarHeight + AppSpacing .lg),
46+ preferredSize: const Size .fromHeight (kToolbarHeight + AppSpacing .lg),
4747 child: Padding (
4848 padding: const EdgeInsets .only (
4949 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';
44import 'package:ht_dashboard/content_management/view/sources_page.dart' ;
55import 'package:ht_dashboard/l10n/l10n.dart' ;
66import 'package:ht_dashboard/shared/constants/app_spacing.dart' ;
7- import 'package:ht_dashboard/shared/theme/app_theme.dart' ;
87
98/// {@template content_management_page}
109/// A page for Content Management with tabbed navigation for sub-sections.
@@ -40,7 +39,7 @@ class _ContentManagementPageState extends State<ContentManagementPage>
4039 appBar: AppBar (
4140 title: Text (l10n.contentManagement),
4241 bottom: PreferredSize (
43- preferredSize: Size .fromHeight (kTextTabBarHeight + AppSpacing .lg),
42+ preferredSize: const Size .fromHeight (kTextTabBarHeight + AppSpacing .lg),
4443 child: Column (
4544 crossAxisAlignment: CrossAxisAlignment .start,
4645 children: [
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ class _SettingsView extends StatelessWidget {
3838 appBar: AppBar (
3939 title: Text (l10n.settings),
4040 bottom: PreferredSize (
41- preferredSize: Size .fromHeight (kToolbarHeight + AppSpacing .lg),
41+ preferredSize: const Size .fromHeight (kToolbarHeight + AppSpacing .lg),
4242 child: Padding (
4343 padding: const EdgeInsets .only (
4444 left: AppSpacing .lg,
You can’t perform that action at this time.
0 commit comments