Answers for "border radius not working ios react native"

0

border radius not working ios react native

add
overflow: 'hidden'


Using overflow: 'hidden' on the same element that have borderRadius should fix this issue, I guess..

<Text
style={{
       borderRadius: 5,
       overflow: 'hidden',
       ....
      }}
        >
Posted by: Guest on June-16-2021

Code answers related to "border radius not working ios react native"

Code answers related to "Javascript"

Browse Popular Code Answers by Language