@@ -6,7 +6,6 @@ import 'package:flutter_bloc/flutter_bloc.dart';
6
6
import 'package:flutter_news_app_web_dashboard_full_source_code/content_management/bloc/archived_topics/archived_topics_bloc.dart' ;
7
7
import 'package:flutter_news_app_web_dashboard_full_source_code/l10n/app_localizations.dart' ;
8
8
import 'package:flutter_news_app_web_dashboard_full_source_code/l10n/l10n.dart' ;
9
- import 'package:flutter_news_app_web_dashboard_full_source_code/shared/shared.dart' ;
10
9
import 'package:intl/intl.dart' ;
11
10
import 'package:ui_kit/ui_kit.dart' ;
12
11
@@ -32,7 +31,7 @@ class _ArchivedTopicsView extends StatelessWidget {
32
31
final l10n = AppLocalizationsX (context).l10n;
33
32
return Scaffold (
34
33
appBar: AppBar (
35
- title: Text (l10n.archivedTopics), //TODO(you): Localize this string
34
+ title: Text (l10n.archivedTopics), // TODO(you): Localize this string
36
35
),
37
36
body: Padding (
38
37
padding: const EdgeInsets .all (AppSpacing .lg),
@@ -42,7 +41,7 @@ class _ArchivedTopicsView extends StatelessWidget {
42
41
state.topics.isEmpty) {
43
42
return LoadingStateWidget (
44
43
icon: Icons .topic,
45
- headline: l10n.loadingArchivedTopics, //TODO(you): Localize this string
44
+ headline: l10n.loadingArchivedTopics, // TODO(you): Localize this string
46
45
subheadline: l10n.pleaseWait,
47
46
);
48
47
}
@@ -59,7 +58,7 @@ class _ArchivedTopicsView extends StatelessWidget {
59
58
}
60
59
61
60
if (state.topics.isEmpty) {
62
- return Center (child: Text (l10n.noArchivedTopicsFound)); //TODO(you): Localize this string
61
+ return Center (child: Text (l10n.noArchivedTopicsFound)); // TODO(you): Localize this string
63
62
}
64
63
65
64
return Column (
0 commit comments