I am trying to get a frame to scale to different screen sizes. I already changed the size to be scale instead of offset. I think the problem is the UIGridLayout is doing something weird with the positions of the items in the frame.
This is what my screen looks like in regular studio view:
Your Grid is probably organizing the Labels in Offset size,
Since mobile devices have obviously less resolution than Desktop,
you have to adjust it according to the % of the Frame,
You have 6 texts, so 100% (entire frame) divided by 6 is 16.66%
It’s going to be really hard to keep the elements aligned properly, I recommend having the egg image label and the chance text label in the same frame, and then have all frames parented to another frame with a UIListLayout (UIGridLayouts are for when you need rows and columns )