I'm new to React Native and I'm very happy with how flexbox automatically fits the content to the screen size.
This works great as long as I'm working with squares, but when it comes to circles it seems that I have to specify the size of the circle using pixels.. This is obviously not optimal when developing to different screen sizes.
I have tried using PixelRatio like this:
height: 90 * pixelRatio,
width: 90 * pixelRatio,
borderRadius: 45 * pixelRatio,
This makes it a little better, but there still seems to be a huge different in the size of the circle as it appears on Iphone 6 vs Iphone 6 plus.
Is there any way to use flexbox to automatically create the size of a circle just like it can with squares?
Or is there another way to make sure the circle will be displayed identical on different devices?