status-desktop/ui/app/AppLayouts/Profile/views/wallet/MainView.qml

22 lines
385 B
QML
Raw Normal View History

import QtQuick 2.13
import shared.status 1.0
import "../../stores"
Column {
id: root
anchors.top: parent.top
anchors.topMargin: 64
anchors.left: parent.left
anchors.right: parent.right
property WalletStore walletStore
signal goToNetworksView()
StatusSettingsLineButton {
text: qsTr("Networks")
onClicked: goToNetworksView()
}
}