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 但没有任何变化,所以请指导我,我哪里做错了?
刚刚通过设置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)
| 归档时间: |
|
| 查看次数: |
3325 次 |
| 最近记录: |