Releases: felipebaltazar/Maui.TutorialCoachMark
Releases · felipebaltazar/Maui.TutorialCoachMark
0.0.2-pre
Overview
The first working version of this package 🥳🎉
Release build
You can now use it by only setting the bindable properties in XAML:
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage
x:Class="Maui.TutorialCoachMark.Sample.MainPage"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:t="clr-namespace:Maui.TutorialCoachMark;assembly=Maui.TutorialCoachMark"
x:Name="page"
t:Tutorial.EnableTutorial="true">
<VerticalStackLayout Padding="30,0" Spacing="25">
<Label
t:Tutorial.TutorialOrder="1"
t:Tutorial.TutorialParent="{Reference page}"
Text="Hello, World!">
<t:Tutorial.CoachMarkView>
<StackLayout>
<Label
FontAttributes="Bold"
Text="Describe your elements!"
TextColor="White" />
</StackLayout>
</t:Tutorial.CoachMarkView>
</Label>
</VerticalStackLayout>
</ContentPage>