Skip to content

Commit

Permalink
Reinstate deleted iOS menu item.
Browse files Browse the repository at this point in the history
  • Loading branch information
amugofjava committed Apr 18, 2024
1 parent c7eaa41 commit dd1a540
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lib/ui/podcast/podcast_context_menu.dart
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,14 @@ class _CupertinoContextMenu extends StatelessWidget {
},
child: Text(L.of(context)!.mark_episodes_played_label),
),
CupertinoActionSheetAction(
isDefaultAction: true,
onPressed: () {
bloc.podcastEvent(PodcastEvent.clearAllPlayed);
Navigator.pop(context, 'Cancel');
},
child: Text(L.of(context)!.mark_episodes_not_played_label),
),
CupertinoActionSheetAction(
isDefaultAction: true,
onPressed: () {
Expand Down

0 comments on commit dd1a540

Please sign in to comment.