I am creating a Flutter app. i made the design like this.
My TextFormField form field for email and password heights are small. I want it to be the same size of the bu
You can user this code to customized your TextFormField
new SizedBox( width: 200.0, height: 300.0, child: const Card(child: const Text('Hello World!')), )