fix(@desktop/wallet): Send modal don't expand vertically

fuixes #11352
This commit is contained in:
Khushboo Mehta 2023-07-05 21:32:02 +02:00 committed by Khushboo-dev-cpp
parent 0efca3f0bd
commit 0b75e84809
7 changed files with 23 additions and 9 deletions

View File

@ -46,11 +46,22 @@ SplitView {
for (let i = 0; i < 10; i++)
append({
name: "some saved addr name " + i,
ens: []
ens: [],
address: "0x2B748A02e06B159C7C3E98F5064577B96E55A7b4",
chainShortNames: "eth:arb"
})
}
}
function splitAndFormatAddressPrefix(textAddrss, isBridgeTx, showUnpreferredNetworks) {
return textAddrss
}
function resolveENS() {
return ""
}
readonly property string currentCurrency: "USD"
readonly property QtObject currencyStore: QtObject {

View File

@ -99,7 +99,7 @@ StatusDialog {
width: 556
topMargin: 64 + header.height
bottomPadding: footer.visible ? 0 : 32
bottomPadding: footer.visible ? footer.height : 32
padding: 0
background: StatusDialogBackground {
@ -398,7 +398,6 @@ StatusDialog {
TabAddressSelectorView {
id: addressSelector
width: parent.width
anchors.left: parent.left
anchors.right: parent.right
anchors.leftMargin: Style.current.bigPadding
@ -414,7 +413,6 @@ StatusDialog {
NetworkSelector {
id: networkSelector
width: parent.width
anchors.left: parent.left
anchors.right: parent.right
anchors.leftMargin: Style.current.bigPadding
@ -438,7 +436,6 @@ StatusDialog {
FeesView {
id: fees
width: parent.width
anchors.left: parent.left
anchors.right: parent.right
anchors.leftMargin: Style.current.bigPadding

View File

@ -71,7 +71,6 @@ Item {
onBestRoutesChanged: d.draw()
onErrorModeChanged: if(errorMode) d.draw()
width: 410
height: visible ? networkCardsLayout.height : 0
RowLayout {

View File

@ -108,6 +108,7 @@ Item {
anchors.top: parent.top
anchors.left: parent.left
anchors.margins: Style.current.padding
width: stackLayout.width - Style.current.xlPadding
store: root.store
customMode: tabBar.currentIndex === 2
selectedAccount: root.selectedAccount

View File

@ -35,6 +35,7 @@ ColumnLayout {
signal reCalculateSuggestedRoute()
RowLayout {
Layout.fillWidth: true
spacing: 10
StatusRoundIcon {
@ -47,9 +48,9 @@ ColumnLayout {
Layout.alignment: Qt.AlignTop
Layout.fillWidth: true
RowLayout {
Layout.maximumWidth: 410
Layout.fillWidth: true
StatusBaseText {
Layout.maximumWidth: 410
Layout.fillWidth: true
font.pixelSize: 15
font.weight: Font.Medium
color: Theme.palette.directColor1
@ -72,7 +73,7 @@ ColumnLayout {
}
}
StatusBaseText {
Layout.maximumWidth: 410
Layout.fillWidth: true
font.pixelSize: 15
color: Theme.palette.baseColor1
text: qsTr("The networks where the receipient will receive tokens. Amounts calculated automatically for the lowest cost.")
@ -80,6 +81,8 @@ ColumnLayout {
}
Loader {
id: networksLoader
Layout.fillWidth: true
Layout.preferredHeight: item.height
Layout.topMargin: Style.current.padding
visible: active
sourceComponent: NetworkCardsComponent {

View File

@ -82,6 +82,7 @@ RowLayout {
Layout.fillWidth: true
Layout.alignment: Qt.AlignHCenter
Layout.topMargin: Style.current.smallPadding
Layout.rightMargin: Style.current.padding
amountToSend: root.amountToSend
errorType: root.errorType
isLoading: root.isLoading && !root.isBridgeTx

View File

@ -43,6 +43,7 @@ Loader {
d.isPending = true
return store.resolveENS(root.selectedRecipient.ens)
}
break
}
case TabAddressSelectorView.Type.RecentsAddress: {
let isIncoming = root.selectedRecipient.to === root.selectedRecipient.address
@ -52,6 +53,7 @@ Loader {
}
case TabAddressSelectorView.Type.Address: {
root.item.input.text = root.selectedRecipient.address
break
}
}
root.addressText = root.selectedRecipient.address