Skip to content

Commit

Permalink
fix(widgets): Fix incorrect page numbers in JumpPageDialog
Browse files Browse the repository at this point in the history
  • Loading branch information
realth000 committed Dec 20, 2023
1 parent 90cfa34 commit be05a04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/widgets/jump_page_dialog.dart
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ class JumpPageDialog extends ConsumerWidget {
itemCount: choicesList.length,
itemBuilder: (context, index) {
return RadioListTile(
title: Text('$index'),
value: index,
title: Text('${choicesList[index]}'),
value: choicesList[index],
groupValue: v,
onChanged: (value) {
if (value == null) {
Expand Down

0 comments on commit be05a04

Please sign in to comment.