- import QtQuick 2.2
- import QtQml 2.2
- import QtQuick.Controls 1.4
- import QtQuick.Controls.Styles 1.3
- Rectangle {
- anchors.fill: parent
- gradient: Gradient {
- GradientStop { position: 0.0; color: "blue" }
- GradientStop { position: 0.75; color: "black" }
- GradientStop { position: 1.0; color: "dimgray" }
- }
- }
|