【发布时间】:2021-03-14 20:54:23
【问题描述】:
在 TextField 小部件的 InputDecoration 部分中,只有左侧的图标可用(我的意思是在文本字段之外没有后缀)
如何在右侧 TextField 中添加图标?
使用 Row 是另一个问题:
body: Column(
children: [
Expanded(
child: ListView(
children: [
Text("Hi")
],
),
),
Expanded(
child: Row(
children: [
TextField(
style: TextStyle(
backgroundColor: Color.fromRGBO(118, 118, 128, 0.35),
),
decoration: InputDecoration(
hintText: "Message",
filled: true,
fillColor: Color.fromRGBO(235, 235, 245, 0.6),
border: OutlineInputBorder(
borderRadius: BorderRadius.circular(15),
),
),
),
],
)),
],
),
【问题讨论】:
标签: flutter