Expanded(
child: Padding(
padding: const EdgeInsets.all(8.0),
child: TextFormField(
keyboardType: TextInputType.text,
controller: addressController,
decoration: const InputDecoration(
hintText: 'Address',
border: OutlineInputBorder(),
enabledBorder: OutlineInputBorder(
borderSide: BorderSide(
color: Colors.black, width: 2.0),
)),
validator: (value) {
if (value!.isEmpty) {
return 'Please enter your address';
}
return null;
},
onSaved: (value) {
_address = value;
},
),
),
),
我想改变高度的TEXTFORMFIELD,但当验证它改变它的高度。我 Package TextFormField在SizedBox但当验证是其变化的高度
1条答案
按热度按时间zqdjd7g91#
使用
ContentPadding
属性并设置为您的身高: