I have a widget inside the Scaffold, for example, Container
, whose child is Listview
. The builder
of Listview
returns Dismissible
, with the removal of selected item on swipe. If you simultaneously select 2 or more items of the Listview and swipe them, they will both be removed. Is it possible to avoid deleting several selected items? Or, alternatively, do not handle the second touch on the screen.
PS. I described the solution here.