expo-splash-screen
Version:
Provides a module to allow keeping the native Splash Screen visible until you choose to hide it.
11 lines (10 loc) • 370 B
TypeScript
import { ConfigPlugin, type XcodeProject } from 'expo/config-plugins';
export declare const withIosSplashXcodeProject: ConfigPlugin;
/**
* Modifies `.pbxproj` by:
* - adding reference for `.storyboard` file
*/
export declare function setSplashStoryboardAsync({ projectName, project, }: {
projectName: string;
project: XcodeProject;
}): Promise<XcodeProject>;