Post

Replies

Boosts

Views

Activity

LazyVStack inside ScrollView performance issues on iOS 16
I'm using the newest version of XCode together with iOS 16.0.3. I'm trying to implement an everyday use case - a LazyVStack inside a ScrollView. On my iPhone 13 Pro which has a 120Hz display I'm not able to get a buttery smooth scroll without stuttering and jumping even for this simple example: ScrollView { LazyVStack { ForEach(1...100, id: \.self) { value in Text("Some long text which wraps to 2 lines because why not, .....!!!! \(value)") } } } Is it a known issue of iOS 16?
0
1
1.4k
Oct ’22
LazyVStack inside ScrollView performance issues on iOS 16
I'm using the newest version of XCode together with iOS 16.0.3. I'm trying to implement an everyday use case - a LazyVStack inside a ScrollView. On my iPhone 13 Pro which has a 120Hz display I'm not able to get a buttery smooth scroll without stuttering and jumping even for this simple example: ScrollView { LazyVStack { ForEach(1...100, id: \.self) { value in Text("Some long text which wraps to 2 lines because why not, .....!!!! \(value)") } } } Is it a known issue of iOS 16?
Replies
0
Boosts
1
Views
1.4k
Activity
Oct ’22
UNNotificationServiceExtension lifecycle
Is my UNNotificationServiceExtension subclass instantiated per each call of didReceive(_ request: UNNotificationRequest ... or can one instance handle multiple calls of didReceive(_ request: UNNotificationRequest ...?I couldn't find any specific information regarding this behavior in the official documentation.
Replies
0
Boosts
0
Views
755
Activity
Mar ’22