Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
weblate committed Jul 25, 2023
2 parents 3b18c0b + bd1d2c4 commit 404b766
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions lib/app/pages/accept_eq_values_terms_privacy_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,12 @@ class _AcceptEqualitieValuesTermsPrivacyPageState
const SizedBox(height: 20.0),
EqTermsAndPrivacy(),
const SizedBox(height: 20.0),
Fields.dialogActions(context,
mainAxisAlignment: MainAxisAlignment.spaceBetween,
buttons: _actions())
Padding(
padding: EdgeInsets.symmetric(horizontal: 10.0),
child: Fields.dialogActions(context,
mainAxisAlignment:
MainAxisAlignment.spaceBetween,
buttons: _actions()))
])))));

Widget _headerImages() => Column(children: [
Expand All @@ -71,7 +74,8 @@ class _AcceptEqualitieValuesTermsPrivacyPageState

List<Widget> _actions() => [
TextButton(
onPressed: () => exit(0), child: Text(S.current.actionIDontAgree)),
onPressed: () => exit(0),
child: Text(S.current.actionIDontAgree.toUpperCase())),
TextButton(
onPressed: () async {
await widget.settings.setEqualitieValues(true);
Expand All @@ -81,6 +85,6 @@ class _AcceptEqualitieValuesTermsPrivacyPageState
MaterialPageRoute(
builder: (context) => widget.ouisyncAppHome));
},
child: Text(S.current.actionIAgree))
child: Text(S.current.actionIAgree.toUpperCase()))
];
}

0 comments on commit 404b766

Please sign in to comment.