Skip to content

Improved Navigation Overview docs wordings #342

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 15, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/ff-concepts/navigation-routing/nav-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,12 @@ This action involves navigating to a new screen by pushing a new route onto the

**What Happens Under the Hood:**

- When you push a route, a new screen is placed on top of the current stack. This means the current screen is still in the stack but is not visible to the user.
- When you push a route, a new screen is placed on top of the current stack. This means the previous screen is still in the stack but is not visible to the user.
- The new screen becomes the active screen that the user interacts with.

:::info

Learn more about adding this action [**here**](../../ff-concepts/navigation-routing/page-navigation.md#navigate-to-action).
Learn more about adding this action in the [**page navigation guide**](../../ff-concepts/navigation-routing/page-navigation.md#navigate-to-action).

:::

Expand All @@ -83,7 +83,7 @@ This action involves navigating back to the previous screen by popping the curre

:::info

Learn more about adding this action [**here**](../../ff-concepts/navigation-routing/page-navigation.md#navigate-back-action).
Learn more about adding this action in the [**page navigation guide**](../../ff-concepts/navigation-routing/page-navigation.md#navigate-back-action).

:::

Expand All @@ -98,6 +98,6 @@ This action involves replacing the current route with a new route. Unlike pushin
:::info

- This is useful when you want to prevent the user from navigating back to the previous screen.
- This action is essentially the **Navigate To** action with the **Replace Route** option enabled. Learn more about adding this action [**here**](../../ff-concepts/navigation-routing/page-navigation.md#navigate-to-action).
- This action is essentially the **Navigate To** action with the **Replace Route** option enabled. Learn more about adding this action in the [**page navigation guide**](../../ff-concepts/navigation-routing/page-navigation.md#navigate-to-action).

:::
:::