🖼️ Intro to Sizing
For the app developer today, deciding what mobile device to design for is challenging. On Android alone, there are thousands of different devices that are in popular use today. On iOS, there are still 8 different iPhone sizes and 4 different iPad sizes.
By sizing your components optimally, you can support as many screen sizes and resolutions appropriately across platforms in a single project.
Understanding the four sizing options
The following properties are available to all visible components in the Height
and Width
properties. In these definitions, a parent component is a Screen, Row or Column that contains the component.
Property | Description |
| Sets the size as a percent of the parent component |
| Sets the size in pixels. The screen size of the Phone Previewer in the Designer is by default set to 500 px by 280 px but that may not reflect the size of your phone |
| Sets the height/width of the element to the height/width of its contents |
| Sizes an element to fill its parent component |
Use relative size for almost everything
Relative size is your best friend for almost all elements since it will auto-scale elements to the screen. In some cases, where there are fixed dimensions
Component | Recommendation |
Image or Button (with Image) | Use |
Labels and Text Input | Use |
Row and Column | Usually |
All Other Components | Use |
The special case of images
Image with fixed dimensions and resolutions can be especially difficult to size. We recommend a simple approach that should work in most cases.
Upload or reference images with a minimum resolution (this varies by image size and device)
Set the height and width in
relative size
Set the resize mode property to either
cover
orcontain
(see below). This will autosize your image even if the dimensions of the image change
Use Fit Contents for the height of Labels and Text Inputs
To ensure that the text is not cut off on the screen, in most cases we recommend using Fit contents
to set the height of Labels and Text Inputs
When to use absolute size
Despite the beauty of relative size, there are a few cases where setting elements in absolute size is recommended or required
Use absolute size for Scrollable Screens and Column
Since a Scrollable Screen has a height that is greater than the size of the Screen, the height of the elements must be set to Absolute size
or fit contents.
You cannot use relative sizing or 'fill container' for components in a scrollable Screen or Column.
You can see an example of a Scrollable Screen in the Design Templates
Last updated