From 0af6cb2a6a9eb95dfb3c87c1b434beb60765e84d Mon Sep 17 00:00:00 2001 From: pchalupa Date: Thu, 11 Dec 2025 10:41:56 +0100 Subject: [PATCH] Fix clip to layout bounds --- ios/RNWalletView.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ios/RNWalletView.swift b/ios/RNWalletView.swift index a1040c0..9edf874 100644 --- a/ios/RNWalletView.swift +++ b/ios/RNWalletView.swift @@ -21,6 +21,8 @@ class RNWalletView: ExpoView { private func createButton() { buttonView?.removeFromSuperview() buttonView = PKAddPassButton(addPassButtonStyle: style.toPkAddPassButtonStyle()) + + clipsToBounds = true buttonView!.addTarget(self, action: #selector(onPkAddPassButtonPress), for: .touchUpInside)