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
If there is a scrolling animation, inserting rows before visible content still shifts the whole tableview. Works properly only when tableview is stoped.
◽️Expected Behavior:
If user is scrolling, or there is a scrolling animation the tableview contentOffset should have the content offset shifted properly when there are insertions above.
I think this can be related to UITableView. Changing contentOffset there during scrolling seems to be ignored.
UICollectionView seems to allow changing contentOffset during scrolling, but ASCollectionNode does not have this flag.
Do you have any good solution to get this working properly?
The text was updated successfully, but these errors were encountered:
I've observed what truly happens when Texture is changing the content offset, and I am not so sure if that's the efficient way.
I have achieved a result that does not add any additional lag (which was happening using Texture) by creating a custom UICollectionViewFlowLayout and overriding
◽️When it happens:
Always, 100% reproducible
◽️Current Behavior:
If there is a scrolling animation, inserting rows before visible content still shifts the whole tableview. Works properly only when tableview is stoped.
◽️Expected Behavior:
If user is scrolling, or there is a scrolling animation the tableview contentOffset should have the content offset shifted properly when there are insertions above.
◽️Steps To Reproduce:
Sample code showing the issue:
https://gist.github.com/patryk-sredzinski/832008c265bff1d99e29dd22da844ecd
◽️Environment:
iOS: 16.4.1
Texutre: 3.1.0
◽️Current result:
Short GIF:
Full video:
https://www.youtube.com/shorts/0KfDXZTsVWI
◽️Observations
I think this can be related to UITableView. Changing contentOffset there during scrolling seems to be ignored.
UICollectionView seems to allow changing contentOffset during scrolling, but ASCollectionNode does not have this flag.
Do you have any good solution to get this working properly?
The text was updated successfully, but these errors were encountered: