UNPKG

react-native-bootsplash

Version:

Display a bootsplash on your app starts. Hide it when you want.

16 lines (13 loc) 438 B
import type { TurboModule } from "react-native"; import { TurboModuleRegistry } from "react-native"; export interface Spec extends TurboModule { getConstants(): { darkModeEnabled: boolean; logoSizeRatio?: number; navigationBarHeight?: number; statusBarHeight?: number; }; hide(fade: boolean): Promise<void>; isVisible(): Promise<boolean>; } export default TurboModuleRegistry.getEnforcing<Spec>("RNBootSplash");