Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 App 使用的是 TextFormField,但是 TextFormField 的文本左边距和label一样,现在我有一个需求,文本的左边距比label大。如何解决这个问题。谢谢。
例如:TextFormField 的标题和文本
尝试这个
TextFormField( decoration: InputDecoration( contentPadding: EdgeInsets.symmetric( horizontal: YOUR_PREFERRED_PADDING, vertical: 13.0, ), ), ),
你可以选择 EdgeInsets (symetrics, all,only,....) 兄弟!