mirror of
				https://gitlab.com/comunic/comunicmobile
				synced 2025-11-03 19:54:12 +00:00 
			
		
		
		
	Fix issue on create account route
This commit is contained in:
		@@ -78,8 +78,11 @@ class __CreateAccountRouteBodyState extends State<_CreateAccountRouteBody> {
 | 
			
		||||
        child: CircularProgressIndicator(),
 | 
			
		||||
      );
 | 
			
		||||
 | 
			
		||||
    return Padding(
 | 
			
		||||
    return Center(
 | 
			
		||||
      child: Padding(
 | 
			
		||||
        padding: const EdgeInsets.all(8.0),
 | 
			
		||||
        child: ConstrainedBox(
 | 
			
		||||
          constraints: BoxConstraints(maxWidth: 370),
 | 
			
		||||
          child: ListView(
 | 
			
		||||
            children: <Widget>[
 | 
			
		||||
              _createAccountResult != null
 | 
			
		||||
@@ -146,7 +149,8 @@ class __CreateAccountRouteBodyState extends State<_CreateAccountRouteBody> {
 | 
			
		||||
 | 
			
		||||
              // TOS
 | 
			
		||||
              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,
 | 
			
		||||
                onChanged: (b) {
 | 
			
		||||
                  _acceptedTOS = b;
 | 
			
		||||
@@ -176,6 +180,8 @@ class __CreateAccountRouteBodyState extends State<_CreateAccountRouteBody> {
 | 
			
		||||
              ),
 | 
			
		||||
            ],
 | 
			
		||||
          ),
 | 
			
		||||
        ),
 | 
			
		||||
      ),
 | 
			
		||||
    );
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user