react native position element at the start of flexbox code example
Example 1: items in center in native
var styles = StyleSheet.create({
content:{
flex:1,
flexDirection:'row',
alignItems:'center',
justifyContent:'center'
},
…
});
Example 2: react native button top right
<View>
<Image
source={require('../images/AppIntro/1.png')}
style={{ width: '100%', height: 150 }}
/>
<Icon name="md-close"
style={{
position: 'absolute',
right: 5,
top: 5,
}} />
</View>