Implementing navigation structure
One of the main decisions to make before starting development is to decide on the navigation hierarchy of your application. Generally, this decision should have been taken care of during the UX design phase.
According to the requirements and target audience of your application, the navigation hierarchy can be designed in different ways. Some of these navigation strategies can be summarized as follows:
- Single-page view
- Simple navigation
- Multi-page views
- Master/detail view
Let's get started!
Single-page view
In a single-page view, as the name suggests, a single view is used for the content and possible user interaction, and actions are either executed on this view or on action sheets. Depending on the design requirements, this view can be implemented using a single-page implementation such as ContentPage
or TemplatedPage
:
ContentPage
is among...