如何减少TextFormField与验证消息错误之间的差距

问题描述 投票:0回答:1

我想删除 TextFormField 和 Flutter 中使用 formState.validate() 验证表单时出现的验证错误消息之间的空格

我试图找出该空间是由静态变量引起的原因

static const double subtextGap = 8.0;

我们如何覆盖这个值并将其设为 0

flutter flutter-animation
1个回答
0
投票

您可以使用

conentpadding
来减少 TextFormfield 和错误消息之间的空间,示例:

TextFormField(
  decoration: InputDecoration(
    contentPadding: EdgeInsets.only(left: 11, right: 3, top: 14, bottom: 14),
    errorStyle: TextStyle(fontSize: 9, height: 0.3),
    // Other properties...
  ),
  // Other properties...
),

或者也可以这样使用

contentPadding:EdgeInsets.all(0)

© www.soinside.com 2019 - 2024. All rights reserved.