Navigation handler. Allows the bot to display complex widgets with pages, buttons, and other components.
Page
var nav = new Navigation(msg); // msg taken from something like a slash command. Doesn't matter if it's deferred or not.nav.navigate(new MyPage()); Copy
var nav = new Navigation(msg); // msg taken from something like a slash command. Doesn't matter if it's deferred or not.nav.navigate(new MyPage());
Readonly
Goes back to the previous page.
Interaction to fulfill
Navigates to a new page.
Page to navigate to
Refreshes the current page.
Navigation handler. Allows the bot to display complex widgets with pages, buttons, and other components.
See
Page
Example