react native move text up code example
Example 1: react native component at bottom center
bottomCenter: {
flex: 1,
justifyContent: 'flex-end',
marginBottom: 30
}
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>