How to center an image in React Native
You need to set the style of <View> for justifyContent and alignItems for centering the <Image>. Should be like this : const LoadingScreen = () => ( <View style={styles.container}> <Image style={styles.logo} source={logo} /> </View> ); const styles = StyleSheet.create({ container: { justifyContent: ‘center’, alignItems: ‘center’, }, logo: { width: 300, height: 400, }, }); Or … Read more