From 7e9ebb5dc752b80aa7a4a285a49ad0576f27ccb5 Mon Sep 17 00:00:00 2001 From: M-i-k-e-l Date: Thu, 20 Nov 2025 10:14:53 +0200 Subject: [PATCH] Incubator.Toast - change default zIndex to 100 for iOS as well --- src/incubator/toast/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/incubator/toast/index.tsx b/src/incubator/toast/index.tsx index a3ef664f18..2238deed0a 100644 --- a/src/incubator/toast/index.tsx +++ b/src/incubator/toast/index.tsx @@ -29,7 +29,7 @@ const Toast = (props: PropsWithChildren) => { icon, iconColor, preset, - zIndex = Constants.isAndroid ? 100 : undefined, + zIndex = 100, elevation, style, containerStyle,