import { ActivityIndicator, StyleSheet, View } from 'react-native'; import { colors } from '../theme/colors'; // Shown while AppBootstrap is initialising the crypto backend. Identical // background to the Expo splash so the handoff is invisible to the user. export function BootSplash() { return ( ); } const styles = StyleSheet.create({ container: { flex: 1, alignItems: 'center', justifyContent: 'center', backgroundColor: colors.bg, }, });