Я не уверен, но вам нужно использовать flexdirection перед justify-content. Пример:
<View style={{
flex: 1,
flexDirection: 'column',
justifyContent: 'space-between',
}}>
в вашем случае вы должны использовать:
<Wrapper>
<View style={{borderColor:'lime', borderWidth: 1, flex: 1, flexDirection: 'row',justifyContent: 'center' }}>
<AuthButton text="Logout" onPress={()=> logoutUser()}/>
</View>
</Wrapper>