react-native-google-mobile-ads
    Preparing search index...

    Type Alias UseAppOpenAdManagerResult

    Result of useAppOpenAdManager.

    • status — current lifecycle position.
    • showAdIfAvailable — Google's show-if-ready entry point (call from a cold start loading screen; warm foreground is handled by the hook).
    • isShowing — mirrors the sample isShowingAd guard: true from the show request until the ad closes or fails to show. Warm-foreground ads overlay the running app, so do not swap the app tree out because of it.
    type UseAppOpenAdManagerResult = {
        isShowing: boolean;
        showAdIfAvailable: () => void;
        status: UseAppOpenAdManagerStatus;
    }
    Index
    isShowing: boolean
    showAdIfAvailable: () => void