react native button top right

Solutions on MaxInterview for react native button top right by the best coders in the world

showing results for - "react native button top right"
Marion
21 Mar 2017
1<View>
2    <Image
3        source={require('../images/AppIntro/1.png')} 
4        style={{ width: '100%', height: 150 }}
5    />
6    <Icon name="md-close" 
7          style={{
8                position: 'absolute',
9                right: 5,
10                top: 5,
11          }} />
12</View>