Skip to content

Commit 511fc7d

Browse files
committed
chore: Remove notification icon from headlines feed
- Removed unused IconButton
1 parent e132ef6 commit 511fc7d

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

lib/headlines-feed/view/headlines_feed_page.dart

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -90,15 +90,15 @@ class _HeadlinesFeedPageState extends State<HeadlinesFeedPage> {
9090
style: textTheme.titleLarge?.copyWith(fontWeight: FontWeight.bold),
9191
),
9292
actions: [
93-
IconButton(
94-
icon: const Icon(Icons.notifications_outlined),
95-
tooltip: l10n.notificationsTooltip, // Add tooltip for accessibility
96-
onPressed: () {
97-
context.goNamed(
98-
Routes.notificationsName,
99-
); // Ensure correct route name
100-
},
101-
),
93+
// IconButton(
94+
// icon: const Icon(Icons.notifications_outlined),
95+
// tooltip: l10n.notificationsTooltip, // Add tooltip for accessibility
96+
// onPressed: () {
97+
// context.goNamed(
98+
// Routes.notificationsName,
99+
// ); // Ensure correct route name
100+
// },
101+
// ),
102102
BlocBuilder<HeadlinesFeedBloc, HeadlinesFeedState>(
103103
builder: (context, state) {
104104
var isFilterApplied = false;

0 commit comments

Comments
 (0)