mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 21:09:21 +00:00
Fix issue on create account route
This commit is contained in:
parent
5c76f6e0a6
commit
86c89e782c
@ -78,8 +78,11 @@ class __CreateAccountRouteBodyState extends State<_CreateAccountRouteBody> {
|
|||||||
child: CircularProgressIndicator(),
|
child: CircularProgressIndicator(),
|
||||||
);
|
);
|
||||||
|
|
||||||
return Padding(
|
return Center(
|
||||||
|
child: Padding(
|
||||||
padding: const EdgeInsets.all(8.0),
|
padding: const EdgeInsets.all(8.0),
|
||||||
|
child: ConstrainedBox(
|
||||||
|
constraints: BoxConstraints(maxWidth: 370),
|
||||||
child: ListView(
|
child: ListView(
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
_createAccountResult != null
|
_createAccountResult != null
|
||||||
@ -146,7 +149,8 @@ class __CreateAccountRouteBodyState extends State<_CreateAccountRouteBody> {
|
|||||||
|
|
||||||
// TOS
|
// TOS
|
||||||
CheckboxListTile(
|
CheckboxListTile(
|
||||||
title: Text(tr("I have read and accepted the Terms Of Service.")),
|
title:
|
||||||
|
Text(tr("I have read and accepted the Terms Of Service.")),
|
||||||
value: _acceptedTOS,
|
value: _acceptedTOS,
|
||||||
onChanged: (b) {
|
onChanged: (b) {
|
||||||
_acceptedTOS = b;
|
_acceptedTOS = b;
|
||||||
@ -176,6 +180,8 @@ class __CreateAccountRouteBodyState extends State<_CreateAccountRouteBody> {
|
|||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user