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
Your answer has been answered in Github.
Card( color: Colors.white, shape: ContinuousRectangleBorder( borderRadius: BorderRadius.zero, ), borderOnForeground: true, elevation: 0, margin: EdgeInsets.fromLTRB(0,0,0,0), child: ListTile( // ... ), )