Docs (4.0.0)
class GlobalContext method

showPage

Displays a full-screen page with the specified content view.

showPage(view?: View): void

Notes

  • The page will be displayed until the view is unlinked. Further rendered content will be placed on top, if any.
  • The same view cannot be shown twice. A second call with the same view will be ignored.

Parameters

  • view — The view object to be displayed

Errors

  • This method throws an error if the renderer hasn’t been initialized yet.

Related