Flutter 中 TextFormField 的 prefixIcon 的调整大小(高度和宽度)不起作用

Nir*_*sar 0 flutter flutter-layout

final password = TextFormField(
  autofocus: false,
  obscureText: true,
  decoration: InputDecoration(
    hintText: 'Password',
    contentPadding: EdgeInsets.fromLTRB(20.0, 10.0, 20.0, 10.0),
    prefixIcon: new ImageIcon(
      new AssetImage('assets/ic_email.png'),
      size: 15.0,
    ),
  ),
);
Run Code Online (Sandbox Code Playgroud)

我已将大小设置为 15.0 但没有任何变化,所以请指导我,我哪里做错了?

Nir*_*sar 7

刚刚通过设置Image.asset中的属性得到了解决方案,请尝试以下方法

final password = TextFormField(
  autofocus: false,
  obscureText: true,
  decoration: InputDecoration(
    hintText: 'Password',
    contentPadding: EdgeInsets.fromLTRB(20.0, 10.0, 20.0, 10.0),
    prefixIcon: new IconButton(
      icon: new Image.asset('assets/ic_email.png',width: 15.0,height: 15.0,),
      onPressed: null,
    ),
  ),
);
Run Code Online (Sandbox Code Playgroud)