Skip to content

Instantly share code, notes, and snippets.

@FelipeSantos75
Created September 18, 2021 15:25
Show Gist options
  • Save FelipeSantos75/baf0cb729da45b8a97e486523e660bac to your computer and use it in GitHub Desktop.
Save FelipeSantos75/baf0cb729da45b8a97e486523e660bac to your computer and use it in GitHub Desktop.
Form(
key: _form,
child: GlassMorphism(
start: 0.9,
end: 0.6,
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Padding(
padding: EdgeInsets.all(8.0),
child: TextFormField(
controller: obsController,
decoration: const InputDecoration(
labelText: 'Observações do pedido',
border: InputBorder.none),
keyboardType: TextInputType.multiline,
minLines: 3,
maxLines: 5,
),
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment