Update README.md

This commit is contained in:
FlorianDahn 2021-07-26 15:42:04 +02:00
parent 6ed91224eb
commit 9fa3df2889

View File

@ -111,7 +111,7 @@ Thanks !
* [As of Now](#as-of-now) * [As of Now](#as-of-now)
* [How to use](#how-to-use) * [How to use](#how-to-use-)
@ -1095,7 +1095,6 @@ It will look something like this:
var f = new FormBase(); var f = new FormBase();
await this.NavigateTo(f); await this.NavigateTo(f);
``` ```
Depending on the model and structure of your bot it can make sense, to have more linear navigation instead of "cross" navigation. Depending on the model and structure of your bot it can make sense, to have more linear navigation instead of "cross" navigation.
@ -1131,7 +1130,6 @@ await this.NavigateTo(nc);
//Push the new from onto the stack to render it //Push the new from onto the stack to render it
nc.PushAsync(f); nc.PushAsync(f);
``` ```
**Tip**: *By default the NavigationController has ForceCleanupOnLastPop enabled, which means that when the stack is again at 1 (due to PopAsync or PopToRootAsync calls) it will replace the controller automatically with the root form you have given to the constructor at the beginning.* **Tip**: *By default the NavigationController has ForceCleanupOnLastPop enabled, which means that when the stack is again at 1 (due to PopAsync or PopToRootAsync calls) it will replace the controller automatically with the root form you have given to the constructor at the beginning.*