Answers for "how to give color box border in react native"

8

adding border in react native

borderColor string
borderTopColor string
borderRightColor string
borderBottomColor string
borderLeftColor string
borderRadius number
borderTopLeftRadius number
borderTopRightRadius number
borderBottomLeftRadius number
borderBottomRightRadius number
borderStyle enum('solid', 'dotted', 'dashed')
borderWidth number
borderTopWidth number
borderRightWidth number
borderBottomWidth number
borderLeftWidth number
Posted by: Guest on May-10-2020
0

add border to view react native

<View style={{
        width: 250,
        height: 200,
        borderColor: '#FF3D00',
        borderWidth: 5,
      }}>
Posted by: Guest on March-21-2022

Code answers related to "how to give color box border in react native"

Code answers related to "Javascript"

Browse Popular Code Answers by Language