Created
September 18, 2021 15:25
-
-
Save FelipeSantos75/baf0cb729da45b8a97e486523e660bac to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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