mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-21 02:58:55 +00:00
30 lines
636 B
QML
30 lines
636 B
QML
|
import QtQuick 2.15
|
||
|
import QtQuick.Controls 2.15
|
||
|
|
||
|
import Storybook 1.0
|
||
|
|
||
|
import shared.popups 1.0
|
||
|
|
||
|
Item {
|
||
|
Button {
|
||
|
anchors.centerIn: parent
|
||
|
text: "Reopen"
|
||
|
onClicked: popup.open()
|
||
|
}
|
||
|
|
||
|
IntroduceYourselfPopup {
|
||
|
id: popup
|
||
|
visible: true
|
||
|
closePolicy: Popup.NoAutoClose
|
||
|
|
||
|
pubKey: "zQ3shW234234EA4545545rhf"
|
||
|
colorId: 0
|
||
|
colorHash: [{colorId: 9, segmentLength: 1}, {colorId: 7, segmentLength: 3}, {colorId: 10, segmentLength: 2}]
|
||
|
onAccepted: console.warn("onAccepted")
|
||
|
onClosed: console.warn("onClosed")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// category: Popups
|
||
|
// status: good
|