I'm completely new to Flutter / Dart so pls excuse if this is a noob question. I'm trying to remove the space on top and bottom of the Text of a ListTile element from the "first app" example code. So basically the two areas with the red pointers.
The code looks like
return ListTile(
//dense: true,
//minVerticalPadding: 1.0,
//contentPadding: EdgeInsets.symmetric(vertical: 1),
tileColor: Colors.blue,
title: Text(
pair.asPascalCase,
style: _biggerFont,
),
);
As u can see, I tried dense, minVerticalPadding and contentPadding, but none of them did the job.
Thanks a lot for pointing me in the right direction!