@@ -28,9 +28,7 @@ class ManageFollowedItemsPage extends StatelessWidget {
28
28
title: Text (l10n.headlinesFeedFilterCategoryLabel), // "Categories"
29
29
trailing: const Icon (Icons .chevron_right),
30
30
onTap: () {
31
- // TODO(cline): Replace with actual route name once defined
32
- // context.goNamed(Routes.followedCategoriesListName);
33
- print ('Navigate to Followed Categories List Page' );
31
+ context.goNamed (Routes .followedCategoriesListName);
34
32
},
35
33
),
36
34
const Divider (indent: AppSpacing .lg, endIndent: AppSpacing .lg),
@@ -39,9 +37,7 @@ class ManageFollowedItemsPage extends StatelessWidget {
39
37
title: Text (l10n.headlinesFeedFilterSourceLabel), // "Sources"
40
38
trailing: const Icon (Icons .chevron_right),
41
39
onTap: () {
42
- // TODO(cline): Replace with actual route name once defined
43
- // context.goNamed(Routes.followedSourcesListName);
44
- print ('Navigate to Followed Sources List Page' );
40
+ context.goNamed (Routes .followedSourcesListName);
45
41
},
46
42
),
47
43
const Divider (indent: AppSpacing .lg, endIndent: AppSpacing .lg),
@@ -50,9 +46,7 @@ class ManageFollowedItemsPage extends StatelessWidget {
50
46
title: Text (l10n.headlinesFeedFilterEventCountryLabel), // "Countries"
51
47
trailing: const Icon (Icons .chevron_right),
52
48
onTap: () {
53
- // TODO(cline): Replace with actual route name once defined
54
- // context.goNamed(Routes.followedCountriesListName);
55
- print ('Navigate to Followed Countries List Page' );
49
+ context.goNamed (Routes .followedCountriesListName);
56
50
},
57
51
),
58
52
const Divider (indent: AppSpacing .lg, endIndent: AppSpacing .lg),
0 commit comments