Skip to content

Instantly share code, notes, and snippets.

@FONQRI
Created March 30, 2023 08:26
Show Gist options
  • Save FONQRI/5afbcd0f2c91bc4b829cefe1ede388f5 to your computer and use it in GitHub Desktop.
Save FONQRI/5afbcd0f2c91bc4b829cefe1ede388f5 to your computer and use it in GitHub Desktop.
QtQuickTutorialRectangleUsage2.qml for moderncpp.ir tutorial
Rectangle {
id: rect1
x: 12; y: 12
width: 176; height: 96
gradient: Gradient {
GradientStop { position: 0.0; color: "lightsteelblue" }
GradientStop { position: 1.0; color: "slategray" }
}
border.color: "slategray"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment