From 12ae2343c324626001a5cace5d8fcc9111026fb1 Mon Sep 17 00:00:00 2001 From: Adi Date: Wed, 15 Feb 2023 12:51:26 +0200 Subject: [PATCH] Incubator Toast zIndex set to 100 as default when using Android --- 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 c34d16ab74..f4ecee56ed 100644 --- a/src/incubator/toast/index.tsx +++ b/src/incubator/toast/index.tsx @@ -23,7 +23,7 @@ const Toast = (props: PropsWithChildren) => { icon, iconColor, preset, - zIndex, + zIndex = Constants.isAndroid ? 100 : undefined, elevation, style, containerStyle,