mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-21 19:18:53 +00:00
19 lines
328 B
QML
19 lines
328 B
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
|
|
import StatusQ.Core.Theme 0.1
|
|
|
|
Page {
|
|
signal openLink(string link)
|
|
signal openLinkWithConfirmation(string link, string domain)
|
|
|
|
implicitWidth: 1200
|
|
implicitHeight: 700
|
|
|
|
padding: 12
|
|
|
|
background: Rectangle {
|
|
color: Theme.palette.background
|
|
}
|
|
}
|