diff options
Diffstat (limited to 'examples/declarative/flowview/RoundedRect.qml')
-rw-r--r-- | examples/declarative/flowview/RoundedRect.qml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/declarative/flowview/RoundedRect.qml b/examples/declarative/flowview/RoundedRect.qml new file mode 100644 index 0000000..7d2b58b --- /dev/null +++ b/examples/declarative/flowview/RoundedRect.qml @@ -0,0 +1,4 @@ +import Qt 4.6 + +Rectangle { radius: 5; border.width: 1; width:400; height: 120; color: background; } + |