as you can see from the image above, I want to add the gap/space between 'email' label text and the actual email input (abcd@gmail.com). how to do that ?
this is my current code
Form(
child: Column(
children: [
TextFormField(
autocorrect: false,
decoration: InputDecoration(labelText: "Email"),
keyboardType: TextInputType.emailAddress,
textInputAction: TextInputAction.next,
),
],
),
);