You are currently viewing the docs for Dioxus 0.6.0 which is under construction.

Overview

In this guide, you'll learn to effectively use Dioxus Router whether you're

To follow along with the router example, you'll need a working Dioxus app.Dioxus book to get started.

Make sure to add Dioxus Router as a dependency, as explained in theintroduction.

You'll learn how to

  • Create routes and render "pages".
  • Utilize nested routes, create a navigation bar, and render content for a
  • Parse URL parameters to dynamically display content.
  • Redirect visitors to different routes.

Disclaimer

The example will only display the features of Dioxus Router. It will not

You can find the complete application in the full code chapter.