mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-16 01:27:01 +00:00
1de573ada7
- Created new reusable component to navigate to accounts tab form collectibles / assets tab. - Added needed support in `storybook` to cover the new use case. Closes #13340
44 lines
818 B
QML
44 lines
818 B
QML
import QtQuick 2.15
|
|
import QtQuick.Layouts 1.15
|
|
|
|
import shared.panels 1.0
|
|
|
|
import StatusQ.Core 0.1
|
|
import StatusQ.Controls 0.1
|
|
|
|
import utils 1.0
|
|
|
|
ColumnLayout {
|
|
id: root
|
|
|
|
property alias text: textComponent.text
|
|
|
|
signal clicked
|
|
|
|
spacing: Style.current.halfPadding
|
|
|
|
Separator {
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: Style.current.padding
|
|
Layout.bottomMargin: Style.current.padding
|
|
}
|
|
|
|
StatusBaseText {
|
|
id: textComponent
|
|
|
|
Layout.alignment: Qt.AlignHCenter
|
|
|
|
font.pixelSize: Style.current.additionalTextSize
|
|
text: ""
|
|
}
|
|
|
|
StatusFlatButton {
|
|
Layout.alignment: Qt.AlignHCenter
|
|
|
|
font.pixelSize: Style.current.additionalTextSize
|
|
text: qsTr("Add accounts to showcase")
|
|
|
|
onClicked: root.clicked()
|
|
}
|
|
}
|