UITabBarViewController QML Type

Provides a container for displaying multiple UIViewController through a tab bar. More...

Import Statement: import .
Inherits:

UIViewController

Detailed Description

UITabBarViewController ... TODO


  import jsee23.qmluikit 0.1

  UITabBarController {
      UIViewController {
          title: "First"
          tabBarItem: UITabBarItem {
              title: "First"
              systemItem: UITabBarItem.Contacts
          }

          UIView {
              backgroundColor: "red"
          }
      }

      UIViewController {
          title: "Second"
          tabBarItem: UITabBarItem {
              title: "Second"
              systemItem: UITabBarItem.Recents
          }

          UIView {
              backgroundColor: "green"
          }
      }
  }