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.
29 lines
1.2 KiB
29 lines
1.2 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"
|
|
xmlns:views="clr-namespace:ex_CurvedLabel.Views"
|
|
x:Class="ex_CurvedLabel.MainPage">
|
|
<Grid ColumnDefinitions="2*,*,*">
|
|
<views:CurvedLabel Text="The name's Plissken. Call me Snake"
|
|
FontFamily="OpenSans-Regular"
|
|
FontSize="120"
|
|
TextColor="Yellow"
|
|
Path="M100,100 Q300,800 600,400 Q900,100 1200,1100"/>
|
|
<views:CurvedLabel Text="The name's Plissken. Call me Snake"
|
|
Grid.Column="1"
|
|
FontFamily="Chalkduster"
|
|
FontSize="94"
|
|
TextColor="DarkSalmon"
|
|
Path="M 100,400 a 330,330 0 1,0 660,0 a 330,330 0 1,0 -660,0Z"
|
|
RotationX="30" RotationY="40"/>
|
|
<views:CurvedLabel Text="The name's Plissken. Call me Snake"
|
|
Grid.Column="2"
|
|
FontFamily="Chalkduster"
|
|
FontSize="94"
|
|
TextColor="DarkSalmon"
|
|
Path="M 100,400 a 330,330 0 1,0 660,0 a 330,330 0 1,0 -660,0Z"
|
|
Rotation="90"
|
|
WidthRequest="430" HeightRequest="400"/>
|
|
</Grid>
|
|
</ContentPage>
|