My app has three main screens that I would like to make available as different tabs. A TabbedPage seems like the prefect control to contain these pages, but the examples I've found seem to data bind each tab to a different item in a list.
I'd like to do something like this:
<TabbedPage ...>
<TabbedPage.Items>
<MyFirstPage />
<MySecondPage />
</TabbedPage.Items>
</TabbedPage>
This doesn't work. Is this possible (with different syntax) or should I be using something else if I want to create a tabbed navigation between pages?