I have a ForEach block and a Stepper embedded in a List view. The contents of the List view\'s first section is as follow
ForEach
Stepper
List
I had a same problem i solve with adding if condition before ForEach.
if (!IsDeleting) { ... .OnDecrement{ IsDeleting := true } }
any better solution?