Skip to content

Commit

Permalink
feat: added review all cards implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
SethCohen committed Mar 13, 2023
1 parent cd53ba8 commit b145354
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/lib/pages/review_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,15 @@ class _ReviewPageState extends State<ReviewPage> {
title: const Text('Review All'),
trailing: Text(cards.length.toString()),
onTap: () {
// TODO review all cards implementation
Navigator.pushNamed(
context,
'/review',
arguments: {
'lessonId': 'All Cards',
'cards': cards,
'isReview': true,
},
);
},
),
),
Expand Down

0 comments on commit b145354

Please sign in to comment.