GUI Distorted In Emulator

Hello fellow developers! I am having an issue with my UI design. My GUI’s are being distorted when I test with emulator. I am using scale and not offset, so I am not sure what the issue is. Here are some screenshots:

How it should look:

How it looks on different devices in the emulator:

I have already tried changing the anchor point, so please do not comment that I should do that. It would be great if you could help, thanks for reading!

2 Likes

Use scale instead, it looks like you’re using offset.

Edit: Nevermind, didn’t read the text above lol

1 Like

Insert a UISizeConstraint so that it can Scale For Each Device

make sure to add it for Every Child and the Frame

1 Like

Any specific properties I should add to the UISizeConstraint?

1 Like

Nope!


Make sure both the position and size is using scale. The sizes look fine, but the positions are off.

Thanks! My sizes were scale, but as you said, my positions weren’t.