hope you can help!
Wondering how I can change code based on device version?
For example I have skia sharp code with a size integer set as below:
int size = Math.Min(180, 180);
On ios 13 this looks good but on ios 11 it's way too big!
How can I change the code behind size integer based on the ios version?
Thanks!