Boa tarde,
na aula em anexo, eu notei que o professor usou padding top e depois padding top novamente embaixo. Para reaproveitar o código, não é possível usar um padding top apenas e colocar o bottom junto? Ai ele aplica padding encima e embaixo, igual fazemos no CSS com dev web
Padding(
padding: const EdgeInsets.only(top: 8.0),
child: TextField(
decoration: InputDecoration(
labelText: 'Account number',
),
style: TextStyle(
fontSize: 24.0,
),
keyboardType: TextInputType.number,
),
),
Padding(
padding: const EdgeInsets.only(top: 8.0),
child: ElevatedButton(
onPressed: () {},
child: Text('Create')
),
),