kostas
kostas

Reputation: 809

Xamarin.Forms view for Wizard

Is there any View on Xamarin.Forms to use like wizard? I must use Xamarin.Forms (not Xamarin.Android). Any suggestions? I have seen this post but it looks like a bit complicated to me (Xamarin step by step wizard android views)

Upvotes: 3

Views: 3237

Answers (1)

Dennis Schröer
Dennis Schröer

Reputation: 2412

Update 17.04.2019:

Beginning with Xamarin.Forms 4.0, there is a new CarouselView control! This makes my old answer obsolete.


Old answer (obsolete):

The closest to what you're looking for is a CarouselPage. It holds several pages and you can navigate between them by swiping the screen to the left or the right.

Unfortunately, CarouselPage doesn't contain indicators which show on which page you are right now. You will have to implement this on your own if you need it. Your best choise are Custom Renderers.

Upvotes: 4

Related Questions