UIWindow QML Type

Provides a top-level application window More...

Import Statement: import .

Detailed Description

UIWindow is the top-level object of an application and simply specify, which view controller will be loaded at startup.

UIWindow expect a UIViewController or subtype as a child. Note, that only one child is supported!


  import jsee23.qmluikit 0.1

  UIWindow {
      UIViewController {
          id: initialShownViewController
          // ...
      }
  }