UINavigationController QML Type

Provides a container for navigating between different ViewControllers. More...

Import Statement: import .
Inherits:

UIViewController

Detailed Description

TODO


  import jsee23.qmluikit 0.1

  UIWindow {
      UINavigationController {
          id: navController

          initialViewController: UIViewController {
              title: "Landing page"
              // ...

              UIButton {
                  titleLable: "go to 2. page"
                  onClicked: navController.pushViewController(navController.secondPage)
              }
          }

          property UIViewController secondPage: UIViewController {
              // ...
          }
      }
  }

Property Documentation

initialViewController : UIViewController

TODO: doc


Method Documentation

void pushViewController(UIViewController *controller)

TODO: doc