Qt Quick widgets and controls
In Qt Quick's realm, widgets and controls are known as QML types
. By default, Qt Quick Designer provides us with a set of basic QML types. You can also import additional QML types that come with different modules. Furthermore, you can even create your own custom QML types if none of the existing ones fit, your needs.
Let's take a look at what QML types come with Qt Quick Designer by default. First off, here are the QML types under the Basic
category:

Let's have a look at the different options:
- Border Image: Border Image is a QML type that is designed to create scalable rectangular shapes that can maintain their corner shapes and borders.
- Flickable: Flickable is a QML type that contains all its children types, and, displays them within its clipping area. Flickable has also been extended and used by the
ListView
andGridView
types for scrolling long content. It can also be moved by a touchscreen flick gesture. - Focus Scope: Focus Scope is a low-level QML type that is...