10 lines
210 B
QML
10 lines
210 B
QML
import QtQuick 2.15
|
|
|
|
Rectangle {
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
anchors.bottom: parent.bottom
|
|
width: parent.width * 0.85
|
|
height: parent.height * 0.05
|
|
radius: height*0.5
|
|
}
|