# Guía de programación QML para Qt6

## Qt6 QML Book

A book about Qt6

{% embed url="<https://images.unsplash.com/photo-1722151164124-3b289efef207?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&dl=daniel-romero-JkpvkxUF22g-unsplash.jpg>" %}

### Get Started

{% content-ref url="/spaces/Sh8Zb0vw9zlstTaGKIdC" %}
[Qt6 QML Book](https://docs.novaflowos.com/start/qt6-qml-book/)
{% endcontent-ref %}

### 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

```
import QtQuick

Item {
    id: root
    width: 800
    height: 600
    Text {
      anchors.centerIn: parent
      text: "Hello QtQuick!"
    }
}
```

#### Contribute in Git

Help us make Qt6 QML Book even better.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.novaflowos.com/start/guia-de-programacion-qml-para-qt6.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
