We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ae4481 commit 55acca7Copy full SHA for 55acca7
Sources/LaunchDarklySessionReplay/API/SessionReplayModifier.swift
@@ -8,7 +8,7 @@ struct SessionReplayModifier: ViewModifier {
8
public func body(content: Content) -> some View {
9
content.overlay(
10
SessionReplayViewRepresentable(isEnabled: isEnabled, isIgnored: isIgnored)
11
- .disabled(true)
+ .allowsHitTesting(false)
12
)
13
}
14
@@ -27,7 +27,9 @@ struct SessionReplayViewRepresentable: UIViewRepresentable {
27
class MaskView: UIView { }
28
29
public func makeUIView(context: Context) -> MaskView {
30
- MaskView()
+ let view = MaskView()
31
+ view.isUserInteractionEnabled = false
32
+ return view
33
34
35
public func updateUIView(_ uiView: MaskView, context: Context) {
0 commit comments