mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 13:56:10 +00:00
c030879c18
Initial commit adding token detailed view as per new design
15 lines
273 B
QML
15 lines
273 B
QML
import QtQuick 2.13
|
|
|
|
import StatusQ.Core 0.1
|
|
import StatusQ.Core.Theme 0.1
|
|
|
|
Item {
|
|
id: root
|
|
StatusBaseText {
|
|
anchors.centerIn: parent
|
|
color: Theme.palette.baseColor1
|
|
text: qsTr("Activity will appear here")
|
|
font.pixelSize: 15
|
|
}
|
|
}
|