Reputation: 189
Is it possible to specify different border-radius values for each corner with NativeScript
as I can with CSS in browsers? (Or is there any workarounds?)
I tried code like below on my iOS emulator, but it didn't make any change.
border-radius: 20 0 0 20;
using this;
I'll appreciate your help.
Upvotes: 1
Views: 292
Reputation: 1919
In NativeScript
is not possible to specify border radius in this way. Possible decision is given in this github
issue using clip path
Upvotes: 2