如何在文本字段中添加图标

coo*_*ing 5 textfield flutter

我已将图标添加到文本字段,icon: Icon(Icons.mail),但它出现在文本字段之外。

如何更改图标的位置以使其显示在文本字段内。

文本域:

TextField(
  decoration: InputDecoration(
    icon: Icon(Icons.mail),
  ),
),
Run Code Online (Sandbox Code Playgroud)

Che*_*ddy 9

您需要使用prefixIcon属性而不是icon

TextField(
  decoration: InputDecoration(prefixIcon: Icon(Icons.mail)),
)
Run Code Online (Sandbox Code Playgroud)