Compare commits

...

2 Commits

@ -3,24 +3,24 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:views="clr-namespace:ex_CurvedLabel.Views"
x:Class="ex_CurvedLabel.MainPage">
<Grid ColumnDefinitions="2*,*,*">
<Grid ColumnDefinitions="3*,2*,2*">
<views:CurvedLabel Text="The name's Plissken. Call me Snake"
FontFamily="OpenSans-Regular"
FontSize="120"
FontSize="110"
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"
FontFamily="Luminari"
FontSize="110"
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"/>
Path="M 100,400 a 300,300 0 1,0 600,0 a 300,300 0 1,0 -600,0Z"
RotationX="50" RotationY="40"/>
<views:CurvedLabel Text="The name's Plissken. Call me Snake"
Grid.Column="2"
FontFamily="Chalkduster"
FontSize="94"
TextColor="DarkSalmon"
TextColor="Azure"
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"/>

@ -16,6 +16,7 @@ public static class MauiProgram
fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
fonts.AddFont("Chalkduster.ttf");
fonts.AddFont("Luminari.ttf");
});
#if DEBUG

@ -24,7 +24,7 @@
<ApplicationTitle>ex_CurvedLabel</ApplicationTitle>
<!-- App Identifier -->
<ApplicationId>com.companyname.ex_curvedlabel</ApplicationId>
<ApplicationId>com.companyname.excurvedlabel</ApplicationId>
<!-- Versions -->
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>

Loading…
Cancel
Save