Skip to content

Commit

Permalink
graphic bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
robinholzi committed Nov 21, 2021
1 parent 994422b commit 72639cb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion lib/view/screen/quiz_result.dart
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,9 @@ class _QuizResultPageState extends State<QuizResultPage> {
padding: const EdgeInsets.symmetric(vertical: 6.0),
child: CheckboxListTile(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.all(MQTheme.radiusCard * 2),
borderRadius: BorderRadius.all(MQTheme.radiusCard),
),
dense: true,
title: Text(
answer.text ?? "",
style: MQTheme.defaultTextStyle,
Expand Down
3 changes: 2 additions & 1 deletion lib/widgets/quiz_question.dart
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,9 @@ class _AnswerCheckboxState extends State<AnswerCheckbox> {
Widget build(BuildContext context) {
return CheckboxListTile(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.all(MQTheme.radiusCard * 2),
borderRadius: BorderRadius.all(MQTheme.radiusCard),
),
dense: true,
title: Text(
widget.answer.text ?? "",
style: MQTheme.defaultTextStyle,
Expand Down
1 change: 1 addition & 0 deletions lib/widgets/title/titlebar.dart
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ class TitleBarWidget extends StatelessWidget {
return Container(
padding: EdgeInsets.only(left: Navigator.of(context).canPop() ? 20 : 32,
top: 12, bottom: 12, right: 32),
color: MQColor.bgColorLight,
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
mainAxisSize: MainAxisSize.max,
Expand Down

0 comments on commit 72639cb

Please sign in to comment.