Free Figma Designs you can duplicate and edit for your own apps (link below)

Simple Onboarding or Walkthrough Pages in Xamarin iOS & Android

Improve UX using Free Intro, Tutorial, or Getting Started Screens

Dark Mode Walkthrough page for a published app
var hasRunIntro = Preferences.Get("HasRunIntro", false);            if (!hasRunIntro) {
Preferences.Set("HasRunIntro", true);
await Navigation.PushModalAsync(new WalkthroughPage());
}
<?xml version="1.0" encoding="UTF-8" ?>
<CarouselPage
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
BackgroundColor="#880000"
x:Class="WalkthroughCarousel.WalkthroughPage">
<ContentPage>
<StackLayout BackgroundColor="#888888"
HorizontalOptions="Center" VerticalOptions = "Center">
<Label Text = "One"/>
</StackLayout>
</ContentPage>
<ContentPage>
<StackLayout BackgroundColor="#888888"
HorizontalOptions="Center" VerticalOptions = "Center">
<Label Text = "Two"/>
</StackLayout>
</ContentPage>
<ContentPage>
<StackLayout BackgroundColor="#888888"
HorizontalOptions="Center" VerticalOptions = "Center">
<Label Text = "Three"/>
<Button Text = "Close" Clicked="OnButtonClicked"/>
</StackLayout>
</ContentPage>
</CarouselPage>
namespace WalkthroughCarousel
{
public partial class WalkthroughPage : CarouselPage
{
public WalkthroughPage()
{
InitializeComponent();
}
async void OnButtonClicked(object sender, EventArgs args)
{
await Navigation.PopModalAsync();
}
}
}
Nike walkthrough animation in Steven’s tutorial
Javier’s Lottie Walkthrough Page

--

--

Developers building things, on here to share knowledge. Featured blog for PlanetXamarin.com github.com/saamerm linkedin.com/in/saamer

Get the Medium app

A button that says 'Download on the App Store', and if clicked it will lead you to the iOS App store
A button that says 'Get it on, Google Play', and if clicked it will lead you to the Google Play store