Minor UI fixes
This commit is contained in:
parent
c33d5096d8
commit
1b2f58c48d
2 changed files with 7 additions and 7 deletions
|
@ -51,24 +51,24 @@ class _EmailEntryPageState extends State<EmailEntryPage> {
|
|||
TextFormField(
|
||||
decoration: InputDecoration(
|
||||
hintText: 'your name',
|
||||
contentPadding: EdgeInsets.all(20),
|
||||
contentPadding: EdgeInsets.all(12),
|
||||
),
|
||||
controller: _nameController,
|
||||
autofocus: true,
|
||||
autocorrect: false,
|
||||
keyboardType: TextInputType.name,
|
||||
),
|
||||
Padding(padding: EdgeInsets.all(12)),
|
||||
Padding(padding: EdgeInsets.all(8)),
|
||||
TextFormField(
|
||||
decoration: InputDecoration(
|
||||
hintText: 'you@email.com',
|
||||
contentPadding: EdgeInsets.all(20),
|
||||
contentPadding: EdgeInsets.all(12),
|
||||
),
|
||||
controller: _emailController,
|
||||
autocorrect: false,
|
||||
keyboardType: TextInputType.emailAddress,
|
||||
),
|
||||
Padding(padding: EdgeInsets.all(8)),
|
||||
Padding(padding: EdgeInsets.all(12)),
|
||||
Container(
|
||||
width: double.infinity,
|
||||
height: 44,
|
||||
|
|
|
@ -30,7 +30,7 @@ class _OTTVerificationPageState extends State<OTTVerificationPage> {
|
|||
Widget _getBody() {
|
||||
return SingleChildScrollView(
|
||||
child: Container(
|
||||
padding: EdgeInsets.fromLTRB(8, 40, 8, 8),
|
||||
padding: EdgeInsets.fromLTRB(8, 8, 8, 8),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.center,
|
||||
mainAxisSize: MainAxisSize.max,
|
||||
|
@ -38,8 +38,8 @@ class _OTTVerificationPageState extends State<OTTVerificationPage> {
|
|||
children: [
|
||||
Image.asset(
|
||||
"assets/email_sent.png",
|
||||
width: 256,
|
||||
height: 256,
|
||||
width: 220,
|
||||
height: 220,
|
||||
),
|
||||
Padding(padding: EdgeInsets.all(12)),
|
||||
Text.rich(
|
||||
|
|
Loading…
Add table
Reference in a new issue