expo-splash-screen
Version:
Provides a module to allow keeping the native Splash Screen visible until you choose to hide it.
16 lines (12 loc) • 809 B
text/typescript
import { withAndroidSplashScreen } from '@expo/prebuild-config/build/plugins/unversioned/expo-splash-screen/withAndroidSplashScreen';
import { withIosSplashScreen } from '@expo/prebuild-config/build/plugins/unversioned/expo-splash-screen/withIosSplashScreen';
import { ConfigPlugin, createRunOncePlugin } from 'expo/config-plugins';
const pkg = require('expo-splash-screen/package.json');
const withSplashScreen: ConfigPlugin = (config) => {
// For simplicity, we'll version the unversioned code in expo-splash-screen.
// This adds more JS to the package overall, but the trade-off is less copying between expo-cli/expo.
config = withAndroidSplashScreen(config);
config = withIosSplashScreen(config);
return config;
};
export default createRunOncePlugin(withSplashScreen, pkg.name, pkg.version);