blob: 0d17f21901375ccfef94c8c47cfec2c88f8b3e5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import QtQuick 2.15
import QtQuick.Controls 2.15
import Bootstrap 5.3
import ".."
NavLink {
id: button
contentItem: Text {
text: modelData
font: button.font
color: Bootstrap.primary
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
}
background: Rectangle {
color: checked ? "#1a066ac9" : Bootstrap.btnBg
radius: Bootstrap.navPillsBorderRadius
}
}
|