TextField(
decoration: InputDecoration(
prefixIcon: Icon(Icons.perm_identity ),
labelText: 'Enter Your Name',
)
)
问问题
920 次
1 回答
0
您可以尝试将图标包装在容器中并为其添加边框。
Container(
margin: const EdgeInsets.all(15.0),
padding: const EdgeInsets.all(3.0),
decoration: BoxDecoration(
border: Border(left:
BorderSide( // <--- left side
color: Colors.black,
width: 3.0,
),
),
child: Icon(Icons.perm_identity),
),
),
参考
于 2019-12-09T07:27:56.520 回答