ListTile效果如上: new ListTile( // 前缀 leading:Icon(Icons.navigation), // 标题 title: Text(“导航栏组件”,style:TextStyle(fontWeight:FontWeight.w500)), // 副标题 subtitle: Text(“常见的底部导航栏组件”), // 后缀 trailing: Icon(Icons.chevron_right), // 点击事件 onTap: (){ Navigator.push( context, MaterialPageRoute( builder:(context)=>new BottomNavigation() ) ); }, // 长按事件 onLongPress: (){ print(“object”); } )