Flutter increase height of TextFormField

前端 未结 6 1157
情书的邮戳
情书的邮戳 2021-02-19 02:48

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

6条回答
  •  旧巷少年郎
    2021-02-19 03:14

    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!')),
    )
    

提交回复
热议问题