Qt Quick is unreal. You should be aware that, at its core, it has only a few fundamental building blocks, called components. You will undoubtedly be using these components quite often:
- Item
- Rectangle
- Text
- Image
- TextInput
- MouseArea
Although there are probably hundreds of components and types, these items are the most important. There are also several classes of elements for text, positioning, states, animation, transitions, and transformations. Views, paths, and data handling all have their own elements.
With those building blocks, you can create fantastic UIs that are alive with animations.
The language to write Qt Quick applications is quite easy to pick up. Let's get started.