A hook to hide the modal from inside the modal component.
const { hide } = useMagicModal<{ message: string }>();return ( <Pressable onPress={() => hide({ message: "hey" })}> <Text>Test!</Text> </Pressable>); Copy
const { hide } = useMagicModal<{ message: string }>();return ( <Pressable onPress={() => hide({ message: "hey" })}> <Text>Test!</Text> </Pressable>);
A hook to hide the modal from inside the modal component.
Example