⚠️ Important: You must wrap your app with
SmacOverlayProviderto useuseGlobalOverlay. More:Installation.
import { useGlobalOverlay } from "@smartacteam/react-native-ui";
const { showAlertDialog } = useGlobalOverlay(); showAlertDialog({ title: 'Are you absolutely sure?', description: 'This action cannot be undone. This will permanently delete your account and remove your data from our servers.', onContinue: () => {}, });

You can view AlertDialogOptions on useGlobalOverlay page