Hi@akhtar,
There is various way to give space between two Textfilds. After one Textfield you can use the SizedBox method. Here you can specify the height of your space. You can take a reference from the below code.
Material(
borderRadius: BorderRadius.circular(10),
color: Colors.blueAccent,
elevation: 20,
child: MaterialButton(
minWidth: 200,
height: 50,
onPressed: () {
},
child: Text('LogIN'),
),
),
SizedBox(
height: 50,
)
To know more, join our Flutter Course today.