Create simple ui of login page using TextField widget and Elevated button.

Aim: Create simple ui of login page using TextField widget and Elevated button.

Code:

body: Column(

children: [

TextField(

decoration: InputDecoration(hintText: 'Enter your email'),

),

TextField(

decoration: InputDecoration(hintText: 'Enter your passwrod'),

),

ElevatedButton(

onPressed: () {

return print('You clicked on login button');

},

child: Text('Login'))

],

),

Output :

Comments