Answers for "position in react native"

0

how to position View absolute react native

<View style={{position: 'absolute', top: 0, left: 0, right: 0, bottom: 0, justifyContent: 'center', alignItems: 'center'}}>
  <Text>Centered text</Text>
</View>
Posted by: Guest on May-21-2020
0

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>
Posted by: Guest on April-21-2020

Code answers related to "position in react native"

Code answers related to "Javascript"

Browse Popular Code Answers by Language