作者热门文章
- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
iOS 的 Material Design 看起来不太好,尤其是 TextField。那么有什么方法可以创建自己的吗?或者有什么方法可以给 TextField 添加一些样式,让它看起来很圆?
最佳答案
您可以在 TextField
的装饰参数中添加圆角
TextField(
decoration: InputDecoration(
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(10.0),
),
filled: true,
hintStyle: TextStyle(color: Colors.grey[800]),
hintText: "Type in your text",
fillColor: Colors.white70),
)
关于flutter - 如何在 flutter 中制作圆形 TextField?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49257641/
我是一名优秀的程序员,十分优秀!