gpt4 book ai didi

flutter - 如何减少 Flutter 中 TextformField 中标签文本和底线之间的填充?

转载 作者:行者123 更新时间:2023-12-05 06:07:52 27 4
gpt4 key购买 nike

这是我的:

enter image description here

这就是我想要的:

enter image description here

我想去掉标签文本和底线之间的空格,怎么办?

enter image description here

最佳答案

使用 InputDecorationTheme,您可以根据需要设置 TextformField 的样式。还有填充。

检查一下: https://api.flutter.dev/flutter/material/InputDecorationTheme-class.html

MaterialApp(
theme: ThemeData(
inputDecorationTheme: InputDecorationTheme(
border: OutlineInputBorder(),
contentPadding: EdgeInsets.symmetric(
vertical: 22,
horizontal: 26,
),
labelStyle: TextStyle(
fontSize: 35,
decorationColor: Colors.red,
),
),
)

关于flutter - 如何减少 Flutter 中 TextformField 中标签文本和底线之间的填充?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65305816/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com