-
Notifications
You must be signed in to change notification settings - Fork 8
1. Installation
Clément Sepulchre edited this page Nov 16, 2023
·
3 revisions
Install CherylUI Nuget Package.
Add CherylUI in your your App.axaml
<Application.Styles>
<StyleInclude Source="avares://CherylUI/Index.axaml" />
</Application.Styles>
To use Mobile Controls, please add at the root of your app (MainView.axaml, etc ..) an InteractiveContainer control.
<controls:InteractiveContainer>
... your App ...
</controls:InteractiveContainer>
MobileNavigation is a CherylUI class accessible anywhere in your app. To go to a new page, simple use :
MobileNavigation.Push(new UserControl());
To come back to the previous page, use :
MobileNavigation.Pop();