Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

QML Basics

Some code:

int main() {
    std::cout << "Hello world!\n";
}

some qml:

Item {
    anchors {
        fill: parent
        margins: 10
    }
    visible: true
}

An info

An informative message

Note

List of directives