more padding
This commit is contained in:
parent
2f5aaad3fc
commit
00a6470378
1 changed files with 3 additions and 2 deletions
|
@ -96,8 +96,8 @@ class _QuizPageState extends State<QuizPage> {
|
|||
.indexOf(option),
|
||||
)
|
||||
: _nextQuestion(),
|
||||
child: Text(option),
|
||||
style: FilledButton.styleFrom(
|
||||
padding: const EdgeInsets.all(16.0),
|
||||
backgroundColor: ask_state == -1
|
||||
? null
|
||||
: (v.questions[_currentQuestionIndex].correct ==
|
||||
|
@ -105,7 +105,8 @@ class _QuizPageState extends State<QuizPage> {
|
|||
.indexOf(option)
|
||||
? Colors.green
|
||||
: Colors.red),
|
||||
)));
|
||||
),
|
||||
child: Text(option)));
|
||||
},
|
||||
),
|
||||
if (ask_state != -1)
|
||||
|
|
Loading…
Reference in a new issue