Post

Replies

Boosts

Views

Created

LazyVStack in ScrollView flitters on insertion in iOS 17
I built this Hacker News client a couple of months ago, the app works fine in iOS 16 but after I upgraded to iOS 17, the scrollview flitters whenever there's an insertion. I have tried removing withAnimation block around insertion, and also made sure items in list are identifiable. Anything else I should try? Replacing LazyVStack with VStack will make the issue go away but LazyVStack is kinda necessary here bc I don't have pagination atm. screen recording: https://www.reddit.com/link/16hc43h/video/r6feg0l6zxnb1/player ScrollView { // other views here LazyVStack { ForEach(store.items) { item in CommentTile(item) } } // other views here }
3
1
1.7k
Sep ’23
"We are unable to create an authentication session."
I was trying to upload a build from Xcode to App Store connect but this popped up after I clicked "upload". It was working like an hour ago.... tried googling it but didn't find anything useful.
Replies
0
Boosts
0
Views
484
Activity
Jan ’22
LazyVStack in ScrollView flitters on insertion in iOS 17
I built this Hacker News client a couple of months ago, the app works fine in iOS 16 but after I upgraded to iOS 17, the scrollview flitters whenever there's an insertion. I have tried removing withAnimation block around insertion, and also made sure items in list are identifiable. Anything else I should try? Replacing LazyVStack with VStack will make the issue go away but LazyVStack is kinda necessary here bc I don't have pagination atm. screen recording: https://www.reddit.com/link/16hc43h/video/r6feg0l6zxnb1/player ScrollView { // other views here LazyVStack { ForEach(store.items) { item in CommentTile(item) } } // other views here }
Replies
3
Boosts
1
Views
1.7k
Activity
Sep ’23