Try scaling FontSize to a percentage of screen Width or Height.
A font size of 22 on a phone will look tiny on a tablet.
First, set the screen Sizing to Responsive.
Then set the font size to a percent of the screen height:
set MyText.FontSize to 0.05 * Screen1.Height
The text will now scale to the same proportional size on different screens.
Also, the Designer layout is a very rough approximation of what the screen on the device will look like.
You must use the device and the Companion app to see what it will actually look like.
---