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.
26 lines
878 B
26 lines
878 B
<?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.HeadedButton"
|
|
x:Name="HeadedBtn">
|
|
<HorizontalStackLayout>
|
|
<Border
|
|
x:Name="PrefixBorder"
|
|
Stroke="Transparent"
|
|
StrokeShape="RoundRectangle 250"
|
|
Padding="10">
|
|
<ImageButton
|
|
x:Name="PrefixImage"
|
|
WidthRequest="25"
|
|
HeightRequest="25"/>
|
|
</Border>
|
|
<Label
|
|
x:Name="BtnLabel"
|
|
Margin="20, 0, 0, 0"
|
|
VerticalTextAlignment="Center"
|
|
FontFamily="Poppins"
|
|
FontSize="16"
|
|
TextColor="{StaticResource TextColorPrimary}"/>
|
|
</HorizontalStackLayout>
|
|
</ContentView>
|