Answers for "react native margin top"

3

react native margin

//the four margin directions
marginTop: 10
marginBottom : 11
marginLeft: 6
marginRight: 8

marginVertical: 10 //same as setting both marginTop and marginBottom
marginHorizontal: 7 //same as setting both marginLeft and marginRight

//sets the four directions at once
margin: 10
margin: '10%'
Posted by: Guest on May-22-2021
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
-4

react native margin

//10 of margin top, right, bottom and left
margin: 10
//margin: 'top right bottom left'
margin '10 25 0 -1'
Posted by: Guest on October-01-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language