Background.qml 350 B

12345678910111213
  1. import QtQuick 2.2
  2. import QtQml 2.2
  3. import QtQuick.Controls 1.4
  4. import QtQuick.Controls.Styles 1.3
  5. Rectangle {
  6. anchors.fill: parent
  7. gradient: Gradient {
  8. GradientStop { position: 0.0; color: "blue" }
  9. GradientStop { position: 0.75; color: "black" }
  10. GradientStop { position: 1.0; color: "dimgray" }
  11. }
  12. }