29 lines
574 B
QML
29 lines
574 B
QML
import QtQuick 2.12
|
|
import QtQuick.Controls 2.12
|
|
import QtQuick.Layouts 1.12
|
|
import Spectral.Setting 0.1
|
|
|
|
RowLayout {
|
|
visible: reaction || false
|
|
|
|
Repeater {
|
|
model: reaction
|
|
|
|
delegate: Control {
|
|
horizontalPadding: 6
|
|
verticalPadding: 0
|
|
|
|
background: Rectangle {
|
|
radius: height / 2
|
|
color: MPalette.banner
|
|
}
|
|
|
|
contentItem: Label {
|
|
text: modelData.reaction + " " + modelData.count
|
|
font.pixelSize: 14
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|