25 lines
486 B
QML
25 lines
486 B
QML
import QtQuick
|
|
import QtQuick.Shapes
|
|
import QtQuick.Layouts
|
|
|
|
Rectangle {
|
|
id: pill
|
|
default property alias content: container.data
|
|
|
|
// Center in the middle of the bar
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
implicitWidth: container.childrenRect.width + 15
|
|
implicitHeight: container.childrenRect.height + 12
|
|
|
|
color: "#939ab7"
|
|
radius: 18
|
|
|
|
Loader {
|
|
id: container
|
|
width: childrenRect.width
|
|
height: childrenRect.height
|
|
anchors.centerIn: parent
|
|
}
|
|
}
|