Skip to content

Instantly share code, notes, and snippets.

@andreas-nesheim
Created April 23, 2022 22:10
Show Gist options
  • Save andreas-nesheim/31dee9a805a4957030eaa02e4ac25a02 to your computer and use it in GitHub Desktop.
Save andreas-nesheim/31dee9a805a4957030eaa02e4ac25a02 to your computer and use it in GitHub Desktop.
<Grid
Margin="0,20,0,0"
ColumnDefinitions="*,*"
RowDefinitions="*,*">
<Label
FontAttributes="Bold"
FontSize="18"
Text="Variasjon"
TextColor="Black" />
<Border
Grid.Column="1"
Margin="0,0,30,0"
Padding="10,6"
Background="#eff4fa"
HorizontalOptions="End"
Stroke="#eff4fa"
StrokeThickness="0"
VerticalOptions="End">
<Border.StrokeShape>
<RoundRectangle CornerRadius="60" />
</Border.StrokeShape>
<Label
FontAttributes="Bold"
Text="1 Kreves"
TextColor="#2770bf" />
</Border>
<Label
Grid.Row="1"
FontAttributes="Bold"
FontSize="14"
Text="Velg en"
TextColor="Gray" />
</Grid>
<Grid
Margin="0,10,40,0"
ColumnDefinitions="50,*,*"
RowDefinitions="*,*"
RowSpacing="16">
<RadioButton GroupName="RadioGroup" />
<Label
Grid.Column="1"
Text="Enkel"
TextColor="Black"
VerticalOptions="Center" />
<Label
Grid.Column="2"
HorizontalOptions="End"
Text="129,00 NOK"
TextColor="Black"
VerticalOptions="Center" />
<RadioButton Grid.Row="1" GroupName="RadioGroup" />
<Label
Grid.Row="1"
Grid.Column="1"
Text="Dobbel"
TextColor="Black"
VerticalOptions="Center" />
<Label
Grid.Row="1"
Grid.Column="2"
HorizontalOptions="End"
Text="159,00 NOK"
TextColor="Black"
VerticalOptions="Center" />
</Grid>
<Grid
Margin="0,20,0,0"
ColumnDefinitions="*,*"
RowDefinitions="*,*">
<Label
FontAttributes="Bold"
FontSize="18"
Text="Pimp opp burgeren din"
TextColor="Black" />
<Border
Grid.Column="1"
Margin="0,0,30,0"
Padding="10,6"
Background="#ebebeb"
HorizontalOptions="End"
Stroke="#ebebeb"
StrokeThickness="0"
VerticalOptions="End">
<Border.StrokeShape>
<RoundRectangle CornerRadius="60" />
</Border.StrokeShape>
<Label
FontAttributes="Bold"
Text="Valgfritt"
TextColor="#707070" />
</Border>
<Label
Grid.Row="1"
FontAttributes="Bold"
FontSize="14"
Text="Velg opp til 7"
TextColor="Gray" />
</Grid>
<Grid
Margin="0,10,40,0"
ColumnDefinitions="50,*,*,50"
RowDefinitions="*,*"
RowSpacing="16">
<CheckBox Color="{DynamicResource PrimaryColor}" />
<Label
Grid.Column="1"
Text="Burgerost"
TextColor="Black"
VerticalOptions="Center" />
<Label
Grid.Column="2"
HorizontalOptions="End"
Text="+ 18,00 NOK"
TextColor="Black"
VerticalOptions="Center" />
<Label
Grid.Column="3"
FontFamily="IconFontTypes"
FontSize="24"
HorizontalOptions="End"
Text="{x:Static helpers:IconFont.InformationOutline}"
TextColor="Gray"
VerticalOptions="Center" />
<CheckBox Grid.Row="1" Color="{DynamicResource PrimaryColor}" />
<Label
Grid.Row="1"
Grid.Column="1"
Text="Bacon"
TextColor="Black"
VerticalOptions="Center" />
<Label
Grid.Row="1"
Grid.Column="2"
HorizontalOptions="End"
Text="+ 20,00 NOK"
TextColor="Black"
VerticalOptions="Center" />
<Label
Grid.Row="1"
Grid.Column="3"
FontFamily="IconFontTypes"
FontSize="24"
HorizontalOptions="End"
Text="{x:Static helpers:IconFont.InformationOutline}"
TextColor="Gray"
VerticalOptions="Center" />
</Grid>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment