简体   繁体   中英

How to do tutorial in app and launch it just on first start up in Xamarin?

I am trying to find out how to do tutorial on first start up of app in xamarin. When I try to search that it throws just a plenty tutorials how to start programming in xamarin. Do you have any ideas how can i add tutorial to my app but just on first start up?

using Essentials VersionTracking

if (VersionTracking.IsFirstLaunchEver)
{
  MainPage = // your Tutorial page
}
else 
{
  MainPage = // your standard app first page
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM