为什么图标不出现在flutter的TextField中?

x759pob2  于 2023-06-24  发布在  Flutter
关注(0)|答案(1)|浏览(143)

当我在textField中使用任何图标时,它不会在textField中显示。前缀或后缀

TextField(
       decoration: InputDecoration(
       border: OutlineInputBorder(
       borderRadius: BorderRadius.all(Radius.circular(22))),
       hintText: "Enter your E-Mail",
       prefixIcon: Icon(Icons.mail),
))

Screenshot of the widget

mzsu5hc0

mzsu5hc01#

以下行确保材质图标字体
包含在应用程序中,这样您就可以在
材质图标类。
uses-material-design: true
检查pubspec.yaml文件中是否存在该行

相关问题