mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 22:06:25 +00:00
28 lines
498 B
QML
28 lines
498 B
QML
|
import QtQuick 2.14
|
||
|
|
||
|
import StatusQ.Core 0.1
|
||
|
import StatusQ.Core.Theme 0.1
|
||
|
import StatusQ.Controls 0.1
|
||
|
|
||
|
import Sandbox 0.1
|
||
|
|
||
|
Column {
|
||
|
spacing: 8
|
||
|
|
||
|
StatusTabBar {
|
||
|
StatusTabButton {
|
||
|
width: implicitWidth
|
||
|
text: "Button 1"
|
||
|
}
|
||
|
StatusTabButton {
|
||
|
width: implicitWidth
|
||
|
text: "Button 2"
|
||
|
}
|
||
|
StatusTabButton {
|
||
|
width: implicitWidth
|
||
|
text: "Button 3"
|
||
|
badge.value: 42
|
||
|
}
|
||
|
}
|
||
|
}
|