【发布时间】:2022-11-28 11:21:56
【问题描述】:
试图在 flutter 中为图标设置图像但不起作用。那么,如何在 ListTile 中设置 ImageIcon 的路径。
这条线不起作用:
leading: ImageIcon(AssetImage('images/abt.png'), size: 25),GestureDetector( onTap: () { Navigator.push(context, MaterialPageRoute(builder: (c)=> AboutScreen())); }, child: const ListTile( tileColor: Colors.blue, leading: ImageIcon(AssetImage('images/abt.png'), size: 25), title: Text( "About", style: TextStyle( color: Colors.black ), ), ), ),
【问题讨论】:
标签: flutter