mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-14 00:27:40 +00:00
c030879c18
Initial commit adding token detailed view as per new design
20 lines
329 B
QML
20 lines
329 B
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.12
|
|
import StatusQ.Core 0.1
|
|
import StatusQ.Core.Theme 0.1
|
|
|
|
import "../"
|
|
|
|
StackDetailBase {
|
|
backButtonText: "Assets"
|
|
|
|
//graph placeholder
|
|
Rectangle {
|
|
width: 649
|
|
height: 253
|
|
anchors.centerIn: parent
|
|
color: "pink"
|
|
opacity: 0.3
|
|
}
|
|
}
|