Skip to content

Releases: felipebaltazar/Maui.TutorialCoachMark

0.0.2-pre

13 Oct 05:03
750c452
Compare
Choose a tag to compare
0.0.2-pre Pre-release
Pre-release

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>

Demo

sample