--- uid: Uno.Tutorials.UseNativeFrameNav --- # How to use native Frame navigation ## Example The complete sample code can be found in [NativeFrameNav on Uno.Samples GitHub repository](https://github.com/unoplatform/Uno.Samples/tree/master/UI/NativeFrameNav). ## Step-by-step instructions 1. Create a new Uno Platform application, following the instructions in [Get Started guide](../get-started.md). 2. Add two more pages (`BlankPage1` and `BlankPage2`) to the `Your_Project_Name` project Right-click on the `Your_Project_Name` project -> `Add` -> `New Item...` -> `Page (Uno Platform Windows App SDK)` Repeat once 3. Modify the content of `MainPage.xaml`, `BlankPage1.xaml`, and `BlankPage2.xaml` pages to the following: ```xml ``` Put a different text for each page: "MainPage", "Content 1", "Content 2". > [!NOTE] > Add `xmlns:toolkit="using:Uno.UI.Toolkit"` to the `` element. 4. Add a button for forward navigation in the first two pages: - `MainPage.xaml` and `BlankPage1.xaml`: ```xml