I\'ve made a ListView in Flutter, but now I have some ListTiles in this ListView that can be selected. Upon selection, I want the back
ListView
ListTiles
If you also need an onTap listener with a ripple effect, you can use Ink:
onTap
Ink
ListView( children: [ Ink( color: Colors.lightGreen, child: ListTile( title: Text('With lightGreen background'), onTap() { }, ), ), ], );