Hi Marius,
Greetings from Syncfusion.
We have analyzed your query and we can achieve your requirement “Shows OnBoarding page for first time of the App User” with the help of below code example.
CodeSnippet[C#]:
|
public App()
{
InitializeComponent();
StartPage();
}
private async void StartPage()
{
if (!App.Current.Properties.ContainsKey("IsFirstTimeVisit"))
{
App.Current.Properties["IsFirstTimeVisit"] = "True";
MainPage = new Views.Onboarding.OnBoardingAnimationPage();
await App.Current.SavePropertiesAsync();
}
else
{
MainPage = new Views.Forms.SimpleLoginPage();
}
} |
Also, we have attached the sample for your reference. Please find the sample from the below link.
Regards,
Yuvaraj.