mirror of
				https://gitlab.com/comunic/comunicmobile
				synced 2025-11-04 04:04:18 +00:00 
			
		
		
		
	Fix issue on create account route
This commit is contained in:
		@@ -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> {
 | 
				
			|||||||
              ),
 | 
					              ),
 | 
				
			||||||
            ],
 | 
					            ],
 | 
				
			||||||
          ),
 | 
					          ),
 | 
				
			||||||
 | 
					        ),
 | 
				
			||||||
 | 
					      ),
 | 
				
			||||||
    );
 | 
					    );
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user