mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-04 02:34:52 +00:00
a3c9012f4a
- new panel created: `SwapInputPanel` - some cleanups to the needed stores - created a SB page demonstrating the use of 2 panels and the `SwapExchangeButton` - created QML tests Fixes #14781
14 lines
405 B
QML
14 lines
405 B
QML
import QtQml 2.15
|
|
|
|
/* This is used so that there is an easy way to fill in the data
|
|
needed to launch the Swap Modal with pre-filled requisites. */
|
|
QtObject {
|
|
id: root
|
|
property int selectedAccountIndex: 0
|
|
property int selectedNetworkChainId: -1
|
|
property string fromTokensKey: ""
|
|
property string fromTokenAmount: ""
|
|
property string toTokenKey: ""
|
|
property string toTokenAmount
|
|
}
|