如何在 flutter 中管理 TextFormField 的填充和边距?
How to manage TextFormField paddings and margins in flutter?
用户您好,
我想在一个容器中使用多个 TextFormField,但默认表单似乎占用太多空间 space。如何在 TextFormFields 之间管理 space?
你可以isDense: true
它会缩小 TextFormField
TextFormField(
decoration: InputDecoration(
isDense: true
),
)
用户您好,
我想在一个容器中使用多个 TextFormField,但默认表单似乎占用太多空间 space。如何在 TextFormFields 之间管理 space?
你可以isDense: true
它会缩小 TextFormField
TextFormField(
decoration: InputDecoration(
isDense: true
),
)