mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 22:36:24 +00:00
c030879c18
Initial commit adding token detailed view as per new design
15 lines
397 B
QML
15 lines
397 B
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
import StatusQ.Controls 0.1
|
|
|
|
StackView {
|
|
id: root
|
|
|
|
replaceEnter: Transition {
|
|
NumberAnimation { property: "opacity"; from: 0; to: 1; duration: 400; easing.type: Easing.OutCubic }
|
|
}
|
|
replaceExit: Transition {
|
|
NumberAnimation { property: "opacity"; from: 1; to: 0; duration: 400; easing.type: Easing.OutCubic }
|
|
}
|
|
}
|