import { useNavigation } from "@applicaster/zapp-react-native-utils/reactHooks"; import { toBooleanWithDefaultFalse } from "@applicaster/zapp-react-native-utils/booleanUtils"; export const useIsStandaloneFullscreen = (): boolean => { const navigator = useNavigation(); return toBooleanWithDefaultFalse( !navigator?.canGoBack() && // @ts-ignore navigator?.screenData?.general?.allow_screen_plugin_presentation ); };