Skip to content

Commit 3e748c1

Browse files
authored
Update README.md
1 parent e0e7cde commit 3e748c1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ A flexible navigation stack for Blazor. Easily manage complex page chains with a
99
<a href="https://purple-rock-0e47e3410.6.azurestaticapps.net/" target="_blank">Live Demo</a>
1010
## Installation
1111
## Basic Usage
12-
#### Obtaining INavigationStack
12+
### Obtaining INavigationStack
1313
All operations on the Blazor navigation stack can be done through INavigationStack interface.
1414
INavigationStack interface can be obtained through many ways.
1515
1. Through context
@@ -53,7 +53,7 @@ INavigationStack interface can be obtained through many ways.
5353
private INavigationStack? _stack;
5454
}
5555
```
56-
#### Add a page to the stack
56+
### Add a page to the stack
5757
+ Adding a page on top of the current one by calling INavigationStack.Push method.
5858
+ Remove the top most page by calling INavigationStack.Pop method
5959
``` razor
@@ -70,7 +70,7 @@ await _stack.Push(new StackPage() {
7070
Content = Content(),
7171
});
7272
```
73-
#### Add a page expecting a result
73+
### Add a page expecting a result
7474
+ Adding a page on top of the current one by calling INavigationStack.Push\<T> method.
7575
+ Setting a result and pop the cuurent page by calling INavigationStack.SetResult method.
7676

0 commit comments

Comments
 (0)