wasyl
10/22/2019, 9:56 AMModelList
, they are being added out of order, that is when I add items slowly I have e.g. 1, 2, 3, 4, 5
. But when I click button to add them fast, I end up with 0, 4, 3, 2, 1
. Even when I try explicitly adding the item at position list.size
. The same happens for an immutable list.
Is this because mutating the state doesn’t guarantee order of the mutation? Is there any way actually have the changes applied in order?Andrey Kulikov
10/22/2019, 10:39 AMwasyl
10/22/2019, 11:59 AM