diff --git a/lib/learn.dart b/lib/learn.dart index b03de55..320f4ca 100644 --- a/lib/learn.dart +++ b/lib/learn.dart @@ -148,6 +148,12 @@ class _QuizPageState extends State { ], ), ), + floatingActionButton: askState != -1 + ? FloatingActionButton.extended( + onPressed: _nextQuestion, + icon: const Icon(Icons.chevron_right), + label: const Text("Next")) + : null, ); } }