Qt6 QML Book

A book about Qt6

Get Started

Cross Platform

Its cross-platform nature, allowing users to deploy their applications to all desktop, mobile and embedded platforms using one technology and from a single code base

Scalable

Its scalability from low-end, single-purpose devices to high-end complex desktop applications or connected system

World-class APIs

World-class APIs and tools and documentation, simplifying the creation of applications and devices

Stability

Maintainability, stability, and compatibility, allowing to maintain large code bases with minimal effort

Developer Ecosystem

A large developer ecosystem with more than 1 million users

Qt6 release series

Enable Qt to be the productivity platform for the future

As easy as

  1. import QtQuick
  2. Item {
  3. id: root
  4. width: 800
  5. height: 600
  6. Text {
  7. anchors.centerIn: parent
  8. text: "Hello QtQuick!"
  9. }
  10. }