It seems that with position:absolute in use an element cannot be centred using justifyContent or alignItems. There\'s a workaround to use
position:absolute
justifyContent
alignItems
You can try the code
<View style={{ alignItems: 'center', justifyContent: 'center' }} > <View style={{ position: 'absolute', margin: 'auto', width: 50, height: 50 }} /> </View>