Fluid
Loading...
Searching...
No Matches
ApplicationWindow Class Reference

A window that provides features commonly used for Material Design apps. More...

Detailed Description

A window that provides features commonly used for Material Design apps.

This is normally what you should use as your root component. It provides a \l ToolBar and \l PageStack to provide access to standard features used by Material Design applications.

Here is a short working example of an application:

import QtQuick
import Fluid as Fluid
Fluid.ApplicationWindow {
title: "Application Name"
width: 1024
height: 800
visible: true
initialPage: page
Fluid.Page {
id: page
title: "Page Title"
anchors.centerIn: parent
text: "Hello World!"
}
}
}
Definition Label.qml:15

The documentation for this class was generated from the following file: