It seems like multiple scrolls followed with a fast swipe makes the content disappear. I traced i down to this line of code in UIAbstractTouchableContainer:
var avgVelocity = total / _velocities.Count;
Looks like _velocities count becomes zero, making avgVelocity NaN and thus scrollPosition becomes NaN.
It seems like multiple scrolls followed with a fast swipe makes the content disappear. I traced i down to this line of code in UIAbstractTouchableContainer:
var avgVelocity = total / _velocities.Count;
Looks like _velocities count becomes zero, making avgVelocity NaN and thus scrollPosition becomes NaN.