You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.8 KiB
53 lines
1.8 KiB
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="ShoopNCook.Views.CounterView"
|
|
x:Name="Counter">
|
|
<ContentView.BindingContext>
|
|
<x:Reference Name="Counter"/>
|
|
</ContentView.BindingContext>
|
|
<Grid
|
|
ColumnDefinitions="*, Auto, *">
|
|
|
|
<Border
|
|
Grid.Column="0"
|
|
Stroke="Transparent"
|
|
StrokeShape="RoundRectangle 100"
|
|
BackgroundColor="{StaticResource Selected}">
|
|
<ImageButton
|
|
Source="minus.svg"
|
|
WidthRequest="40"
|
|
HeightRequest="40"
|
|
Clicked="OnMinus"/>
|
|
</Border>
|
|
|
|
<HorizontalStackLayout
|
|
Grid.Column="1"
|
|
Spacing="3"
|
|
Margin="10, 0, 10, 0">
|
|
<Label
|
|
Text="{Binding Count}"
|
|
TextColor="{StaticResource TextColorPrimary}"
|
|
VerticalTextAlignment="Center"
|
|
FontFamily="PoppinsMedium"/>
|
|
|
|
<Label
|
|
Text="{Binding CounterText}"
|
|
TextColor="{StaticResource TextColorPrimary}"
|
|
VerticalTextAlignment="Center"
|
|
FontFamily="PoppinsMedium"/>
|
|
</HorizontalStackLayout>
|
|
|
|
<Border
|
|
Grid.Column="2"
|
|
Stroke="Transparent"
|
|
StrokeShape="RoundRectangle 100"
|
|
BackgroundColor="{StaticResource Selected}">
|
|
<ImageButton
|
|
Source="plus.svg"
|
|
WidthRequest="40"
|
|
HeightRequest="40"
|
|
Clicked="OnPlus"/>
|
|
</Border>
|
|
</Grid>
|
|
</ContentView> |