代码:
TextField(
maxLines:null,
decoration: InputDecoration(
suffixIcon: Icon(Icons.delete),
),
)
每次插入新行时,图标都会居中。
答案 0 :(得分:1)
这是我在Padding
周围使用Icon
所获得的成就:
Container(
height: 100,
child: TextField(
expands: true,
maxLines: null,
decoration: InputDecoration(
suffixIcon: Padding(
padding:
const EdgeInsets.only(left: 0, top: 0, right: 0, bottom: 100),
child: Icon(Icons.add),
)),
),
)
答案 1 :(得分:0)