Skip to content

Commit 7c8fad6

Browse files
committed
lint: fix
1 parent 1f30e29 commit 7c8fad6

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

lib/app/view/app.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ import 'package:ht_dashboard/app_configuration/bloc/app_configuration_bloc.dart'
1212
import 'package:ht_dashboard/authentication/bloc/authentication_bloc.dart';
1313
import 'package:ht_dashboard/l10n/app_localizations.dart';
1414
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
1716
import 'package:ht_dashboard/shared/theme/app_theme.dart';
1817
import 'package:ht_data_repository/ht_data_repository.dart';
1918
import 'package:ht_kv_storage_service/ht_kv_storage_service.dart';

lib/app_configuration/view/app_configuration_page.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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,

lib/content_management/view/content_management_page.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import 'package:ht_dashboard/content_management/view/headlines_page.dart';
44
import 'package:ht_dashboard/content_management/view/sources_page.dart';
55
import 'package:ht_dashboard/l10n/l10n.dart';
66
import '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: [

lib/settings/view/settings_page.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)