Positioning icons relative to the position of an image using kotlin/android studio
I am trying to position some icons around a central image in specific locations. The effect I'm trying to achieve is like an oval with icons at certain spots around the border of the oval.
The way I thought to do it in my code is by putting everything in a Box and using padding and offsets, but, this doesn't work with different screen sizes. Meaning, when I add padding it will adjust it based on the center of the screen but for smaller screen sizes the icons move a different distance.
Is...