15 lines
160 B
QML
15 lines
160 B
QML
|
|
import QtQuick
|
|||
|
|
import QtQuick.Layouts
|
|||
|
|
import QtQuick.Controls
|
|||
|
|
|
|||
|
|
Rectangle {
|
|||
|
|
id: self
|
|||
|
|
radius: 9
|
|||
|
|
clip: true
|
|||
|
|
Component.onCompleted: {
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|