Skip to content

Instantly share code, notes, and snippets.

@andreas-nesheim
Created April 23, 2022 22:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andreas-nesheim/89da5b008f40f8556d98d73572511a91 to your computer and use it in GitHub Desktop.
Save andreas-nesheim/89da5b008f40f8556d98d73572511a91 to your computer and use it in GitHub Desktop.
<Grid Margin="0,10,40,30" ColumnDefinitions="50,50,50,*">
<Border
Margin="10,0,0,0"
Background="LightGray"
HorizontalOptions="Center"
Style="{StaticResource FontIconWithRoundedCornersStyle}"
VerticalOptions="Center">
<Label
FontFamily="IconFontTypes"
FontSize="24"
Text="{x:Static helpers:IconFont.Minus}"
TextColor="White" />
</Border>
<Label
Grid.Column="1"
FontAttributes="Bold"
FontSize="20"
HorizontalOptions="Center"
Text="1"
TextColor="Black"
VerticalOptions="Center"
VerticalTextAlignment="Center" />
<Border
Grid.Column="2"
Margin="0,0,0,0"
Background="{DynamicResource PrimaryColor}"
HorizontalOptions="Center"
Style="{StaticResource FontIconWithRoundedCornersStyle}"
VerticalOptions="Center">
<Label
FontFamily="IconFontTypes"
FontSize="24"
Text="{x:Static helpers:IconFont.Plus}"
TextColor="White" />
</Border>
<Button
Grid.Column="3"
Text="Legg i handlekurv"
VerticalOptions="Center" />
</Grid>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment