status-desktop/ui/app/AppLayouts/Wallet/components/collectiblesComponents/CollectiblesContainer.qml

44 lines
1.0 KiB
QML
Raw Normal View History

import QtQuick 2.13
import QtGraphicalEffects 1.13
import "../../../../../imports"
import "../../../../../shared"
Item {
property url collectibleIconSource: "../../../../img/collectibles/CryptoKitties.png"
property string collectibleName: "CryptoKitties"
property bool isLoading: true
2020-08-18 20:11:36 +00:00
property bool collectiblesOpened: false
id: root
CollectiblesHeader {
2020-08-18 20:11:36 +00:00
id: collectiblesHeader
collectibleName: root.collectibleName
collectibleIconSource: root.collectibleIconSource
isLoading: root.isLoading
2020-08-18 20:11:36 +00:00
toggleCollectible: function () {
root.collectiblesOpened = !root.collectiblesOpened
}
}
Loader {
active: root.collectiblesOpened
sourceComponent: contentComponent
anchors.top: collectiblesHeader.bottom
anchors.topMargin: Style.current.halfPadding
width: parent.width
}
Component {
id: contentComponent
CollectiblesContent {}
}
}
/*##^##
Designer {
D{i:0;autoSize:true;height:480;width:640}
}
##^##*/