Garrison Henkle
10/31/2024, 10:13 PMUIKitInteropProperties
for ComposeUIViewController
? The touch handling changes in 1.7 seem to have broken scrolling of SwiftUI `ScrollView`s that contain `ComposeUIViewController`s, and I don’t see any new properties/functions in ComposeUIViewControllerConfiguration
that would allow me to revert the new behavior.Garrison Henkle
10/31/2024, 10:15 PMScrollView {
ComposeViewControllerHere().frame(height: height)
}
Garrison Henkle
10/31/2024, 10:19 PMAndrei Salavei
11/01/2024, 9:16 AMCMPGestureRecognizer
. There is no direct access to this class, but the Obj-C runtime will help.
So as a workaround - you can prioritise the scroll gesture recogniser in front of CMPGestureRecognizer
to make the scroll working.Marcel
05/05/2025, 9:24 AMScrollView {
VStack {
cmpView
swiftView1
swiftView2
// ...
}
}
Marcel
05/05/2025, 9:35 AMAndrei Salavei
05/05/2025, 10:18 AMMarcel
05/05/2025, 10:19 AMMarcel
05/05/2025, 4:38 PMMarcel
05/05/2025, 4:40 PMMarcel
05/05/2025, 4:40 PMMarcel
05/06/2025, 7:38 AMMarcel
05/06/2025, 11:33 AM