expo-splash-screen
Version:
Provides a module to allow keeping the native Splash Screen visible until you choose to hide it.
42 lines (31 loc) • 916 B
text/typescript
import { isRunningInExpoGo } from 'expo';
import { requireOptionalNativeModule } from 'expo-modules-core';
import { SplashScreenNativeModule, SplashScreenOptions } from './SplashScreen.types';
const SplashModule = requireOptionalNativeModule<SplashScreenNativeModule>('ExpoSplashScreen');
export function setOptions(options: SplashScreenOptions) {
if (!SplashModule) {
return;
}
if (isRunningInExpoGo()) {
console.warn(
"'Splashscreen.setOptions' cannot be used in Expo Go. To customize the splash screen, you can use development builds."
);
return;
}
SplashModule.setOptions(options);
}
export function hide() {
if (!SplashModule) {
return;
}
SplashModule.hide();
}
export async function hideAsync(): Promise<void> {
hide();
}
export async function preventAutoHideAsync() {
if (!SplashModule) {
return;
}
return SplashModule.preventAutoHideAsync();
}