diff --git a/components/Global/components/toast-area-view-port.tsx b/components/Global/components/toast-area-view-port.tsx
new file mode 100644
index 00000000..77608bb5
--- /dev/null
+++ b/components/Global/components/toast-area-view-port.tsx
@@ -0,0 +1,9 @@
+import { ToastViewport } from '@tamagui/toast'
+import { useSafeAreaInsets } from 'react-native-safe-area-context'
+
+export default function SafeToastViewport() : React.JSX.Element {
+ const { left, top, right } = useSafeAreaInsets()
+ return (
+
+ )
+}
\ No newline at end of file
diff --git a/components/jellify.tsx b/components/jellify.tsx
index b98f2a47..eac461f7 100644
--- a/components/jellify.tsx
+++ b/components/jellify.tsx
@@ -11,12 +11,13 @@ import { useColorScheme } from "react-native";
import { PortalProvider } from "@tamagui/portal";
import { JellifyProvider, useJellifyContext } from "./provider";
import { ToastProvider, ToastViewport } from "@tamagui/toast";
+import SafeToastViewport from "./Global/components/toast-area-view-port";
export default function Jellify(): React.JSX.Element {
return (
-
+
@@ -42,7 +43,7 @@ function App(): React.JSX.Element {
)}
-
+
)