I have a ListView.separated with ListTiles which contains a shape: RoundedRectangleBorder.
Everything is displayed as I want. But when I scroll the ListView, the content within the ListTile is hidden but not the shape. The ListView is in the Expanded as follow:
SafeArea
-- Padding
---- Column
------ Center
------ Expanded
Any help will be appreciated
Try wrapping the
ListViewin aMaterial. The shape is drawn on the underlying material. By giving it its own material it shouldn't be able to draw outside its bounds