You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the "single action" property, like scrollToItem is set with the same value again, we don't get the value in the native components manager, because we probably compare the old and new value in the platform factory and call the update only if the value has changed. But sometimes it's not desirable - look at the following example:
Create ListView with some items and set the scrollToItem property to 3 (for example).
Run the scene and scroll manually the list view to any other item.
Set dynamically scrollToItem property again to 3
Result: On Android (and probably on iOS also) the list is not scrolled again to item 3. On Lumin the problem does not occur.
The text was updated successfully, but these errors were encountered:
When the "single action" property, like
scrollToItem
is set with the same value again, we don't get the value in the native components manager, because we probably compare the old and new value in the platform factory and call theupdate
only if the value has changed. But sometimes it's not desirable - look at the following example:scrollToItem
property to3
(for example).scrollToItem
property again to3
Result: On Android (and probably on iOS also) the list is not scrolled again to item 3. On Lumin the problem does not occur.
The text was updated successfully, but these errors were encountered: