candlefinance / faster-image

Fast image loading for React Native backed by performant native libraries.
https://candle.fi/discord
MIT License
479 stars 21 forks source link

Setting border radius just on top corners #6

Closed vega99 closed 1 month ago

vega99 commented 3 months ago

I am trying to set border radius on top but it's not working

` <FasterImageView source={{ url: meme.image, resizeMode: 'contain', }} style={{ ...styles.image, borderTopLeftRadius: 10 , borderTopRightRadius: 10, }} />

`

is it possible to add borderRadius just on top or just bottom?

gtokman commented 3 months ago

I am trying to set border radius on top but it's not working

` <FasterImageView source={{ url: meme.image, resizeMode: 'contain', }} style={{ ...styles.image, borderTopLeftRadius: 10 , borderTopRightRadius: 10, }} />

`

is it possible to add borderRadius just on top or just bottom?

Good catch. Does it work on iOS if you add overflow: 'hidden'? I'll see if I can add this Saturday!

vega99 commented 3 months ago

Nop, it doesn't work either.

Thank so much!

btw It is a great lib