summaryrefslogtreecommitdiff
path: root/TabItem.ui.qml
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-03-23 15:10:21 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-03-23 15:10:21 +0800
commit2cf3e72be21545981f27b838832a055d1dc27489 (patch)
treed7476a60ae843c95db25bc2dcee96d127388e59c /TabItem.ui.qml
parent48b85fe1c1945efb66a4eb81e4405efabc12c1ce (diff)
NavLinks replace TabItem
Diffstat (limited to 'TabItem.ui.qml')
-rw-r--r--TabItem.ui.qml23
1 files changed, 0 insertions, 23 deletions
diff --git a/TabItem.ui.qml b/TabItem.ui.qml
deleted file mode 100644
index 82c8c7d..0000000
--- a/TabItem.ui.qml
+++ /dev/null
@@ -1,23 +0,0 @@
-import QtQuick 2.15
-import QtQuick.Controls 2.15
-import Bootstrap 5.3
-
-Button {
- property int currentIndex: 0
-
- height: 38
- horizontalPadding: 16
- verticalPadding: 8
- contentItem: Text {
- text: modelData
- color: index == currentIndex ? "white" : "#066ac9"
- font {
- family: Bootstrap.bodyFont.family
- pointSize: Bootstrap.bodyFont.pointSize
- }
- }
- background: Rectangle {
- color: index == currentIndex ? "#066ac9" : "transparent"
- radius: 5.2
- }
-}