Skip to content

Commit

Permalink
Fix interaction handling for interop views (#1032)
Browse files Browse the repository at this point in the history
  • Loading branch information
ASalavei committed Jan 30, 2024
1 parent d3b2f1c commit e6a251e
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -326,6 +326,10 @@ internal class ComposeSceneMediator(
focusStack?.pushAndFocus(interactionView)
}
container.addSubview(interopViewContainer)
interopViewContainer.translatesAutoresizingMaskIntoConstraints = false
NSLayoutConstraint.activateConstraints(
getConstraintsToFillParent(interopViewContainer, container)
)
container.addSubview(interactionView)
interactionView.translatesAutoresizingMaskIntoConstraints = false
NSLayoutConstraint.activateConstraints(
Expand Down

0 comments on commit e6a251e

Please sign in to comment.