我是新来的Flutter和学习文本字段。我有一个文本字段,看起来像这样:
我想在前缀图标和可编辑文本之间添加一些填充。下面是我的代码:
TextField(
style: const TextStyle(
color: Color.fromARGB(125, 0, 0, 0),
),
decoration: InputDecoration(
border: const OutlineInputBorder(),
hintText: 'Full Name',
hintStyle: TextStyle(color: Colors.grey[300]),
fillColor: Colors.white,
filled: true,
prefixIcon: Container(
decoration: BoxDecoration(
border: Border(
right: BorderSide(
color: Colors.grey[300]!,
),
),
),
child: const Icon(
Icons.person_outline,
color: kPurple,
),
),
),
cursorColor: kPurple,
)
1条答案
按热度按时间b4lqfgs41#
您可以使用填充包裹图标小部件。或者可替换地向容器添加填充物,
下一篇:The Code Below Work Fine on My Side