If you want to remove space top and bottom ListTile flutter In your code put property dense= true in side the list tile.
1 2 3 4 5 6 7 8 | ListTile( dense:true, contentPadding: EdgeInsets.only(left: 0.0, right: 0.0), title: Text( 'Home', style: TextStyle(fontSize: 15.0), ), ), |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.