问题 I need help, please. How to remove the space top and bottom from ListTile? My Code is: child: Column( children: <Widget>[ ListTile( contentPadding: EdgeInsets.only(left: 0.0, right: 0.0), title: Text( 'Home', style: TextStyle(fontSize: 15.0), ), ), ListTile( contentPadding: EdgeInsets.only(left: 0.0, right: 0.0), title: Text( 'Audio', style: TextStyle(fontSize: 15.0, color: Colors.black45), ), ),), Screenshot Thanks!. Sorry for my bad English 回答1: With ListTile it is not possible. Some