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.
49 lines
1.7 KiB
49 lines
1.7 KiB
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="ex_GlyphsFont.MainPage">
|
|
|
|
<VerticalStackLayout HorizontalOptions="Center"
|
|
Padding="30,0"
|
|
Spacing="25">
|
|
|
|
<Label Text="{StaticResource ion-android-bicycle}"
|
|
FontFamily="Ionicons"
|
|
FontSize="60"
|
|
TextColor="DarkSalmon"/>
|
|
|
|
<Image HorizontalOptions="Start" WidthRequest="60" HeightRequest="60">
|
|
<Image.Source>
|
|
<FontImageSource Glyph="{StaticResource ion-bug}"
|
|
FontFamily="Ionicons"
|
|
Color="DarkSalmon"
|
|
Size="60"/>
|
|
</Image.Source>
|
|
</Image>
|
|
|
|
<ImageButton HorizontalOptions="Start">
|
|
<ImageButton.Source>
|
|
<FontImageSource Glyph="{StaticResource ion-close-circled}"
|
|
FontFamily="Ionicons"
|
|
Color="Red"
|
|
Size="60"/>
|
|
</ImageButton.Source>
|
|
</ImageButton>
|
|
|
|
<Button Text="Delete" TextColor="Red" HorizontalOptions="Start"
|
|
BackgroundColor="Transparent"
|
|
BorderColor="Red"
|
|
BorderWidth="2"
|
|
CornerRadius="10">
|
|
<Button.ImageSource>
|
|
<FontImageSource Glyph="{StaticResource ion-close-circled}"
|
|
FontFamily="Ionicons"
|
|
Color="Red"
|
|
Size="60"/>
|
|
</Button.ImageSource>
|
|
</Button>
|
|
|
|
</VerticalStackLayout>
|
|
|
|
</ContentPage>
|