I'm trying to make a page with lists of information, textboxes, checkboxes etc. While it looks good on one resolution, when i increase the resolution or the dpi, everything including font size and text boxes just becomes huge and overlapping each other. Any recommendations to make my app more responsive?
E.g. Lists of information:
<Grid
Margin="10,0,0,0"
ColumnSpacing="0"
HorizontalOptions="End"
VerticalOptions="FillAndExpand"
ColumnDefinitions="*,auto,*,*,*,*,*,*,*,*"
RowDefinitions="25,25,25,25,25,25,25,50,50,50">
<StackLayout Grid.Column="0" HorizontalOptions="Start">
<Label Text="SYMPTOM"/>
<Label Text="CONTACT NAME"/>
<Label Text="CONTACT NO"/>
<Label Text="MACHINES NO" />
<Label Text="SERIAL NO"/>
<Label Text="CUSTOMER NO"/>
<Label Text="ADD ADDRESS"/>
<Label Text="NOTE"/>
<Label Text="RECEIVED BY" Margin="0,25,0,15"/>
<Label Text="CONTACT NO" Margin="0,20,0,15"/>
</StackLayout>
<StackLayout Grid.Column="2" Grid.ColumnSpan="2" HorizontalOptions="StartAndExpand" Margin="20,0,0,0">
<Label Text="HOSE LEAKING"/>
<Label Text="JORDAN"/>
<Label Text="0163218547"/>
<Label Text="MACHINES AB"/>
<Label Text="SN001244323-01"/>
<Label Text="P0200045"/>
<Label Text="ADD ADDRESS"/>
<Label Text="THIS IS JUST FOR TESTING"/>
</StackLayout>
</Grid>
Textbox:
<StackLayout
Grid.Row="1"
Grid.Column="4"
Grid.ColumnSpan="3"
Orientation="Horizontal"
HorizontalOptions="StartAndExpand"
VerticalOptions="Center">
<StackLayout Margin="0,8,0,0">
<CheckBox IsChecked="False" Color="Green"/>
</StackLayout>
<StackLayout
VerticalOptions="Center"
HorizontalOptions="Start"
WidthRequest="100"
Margin="0,15,0,0">
<Label Text="MOBILE SERVICE" VerticalOptions="Center" FontSize="12"/>
</StackLayout>
<StackLayout HorizontalOptions="FillAndExpand" VerticalOptions="Center">
<Frame
x:Name="MobileFrame"
BackgroundColor="#111111"
BorderColor="#434343"
HasShadow="False"
HeightRequest="7">
<OnPlatform x:TypeArguments="View">
<OnPlatform.Android>
<customstyle:EntryBorderless
x:Name="Mobile_Service"
Margin="-6,-50,15,-50"
HorizontalTextAlignment="Start"
WidthRequest="80"
HeightRequest="120"
Text="2"
IsReadOnly="True"
TextColor="#FFFFFF" />
</OnPlatform.Android>
</OnPlatform>
</Frame>
</StackLayout>
</StackLayout>