diff options
| author | Jaquee <jaquee.monero@gmail.com> | 2017-04-03 18:51:55 +0200 |
|---|---|---|
| committer | Jaquee <jaquee.monero@gmail.com> | 2017-05-05 12:03:03 +0200 |
| commit | 2e53c524a13c4b4ef3cccfc7c7cfc4243144d6f9 (patch) | |
| tree | 11b5609216403534b16a6255101d63cb46f348d9 /LeftPanel.qml | |
| parent | da6aad33a4aa58c298f3452206f3bab04ad2b5cb (diff) | |
| download | monzero-gui-2e53c524a13c4b4ef3cccfc7c7cfc4243144d6f9.tar.gz monzero-gui-2e53c524a13c4b4ef3cccfc7c7cfc4243144d6f9.tar.xz monzero-gui-2e53c524a13c4b4ef3cccfc7c7cfc4243144d6f9.zip | |
ios build settings
Diffstat (limited to 'LeftPanel.qml')
| -rw-r--r-- | LeftPanel.qml | 28 |
1 files changed, 25 insertions, 3 deletions
diff --git a/LeftPanel.qml b/LeftPanel.qml index 043ce9e1..4c47c897 100644 --- a/LeftPanel.qml +++ b/LeftPanel.qml @@ -67,11 +67,12 @@ Rectangle { menuColumn.previousButton.checked = true } - width: 260 + width: (isMobile)? appWindow.width : 260 color: "#FFFFFF" // Item with monero logo Item { + visible: !isMobile id: logoItem anchors.left: parent.left anchors.right: parent.right @@ -115,7 +116,9 @@ Rectangle { } + Column { + visible: !isMobile id: column1 anchors.left: parent.left anchors.right: parent.right @@ -124,6 +127,7 @@ Rectangle { spacing: 5 Label { + visible: !isMobile id: balanceLabel text: qsTr("Balance") + translationManager.emptyString anchors.left: parent.left @@ -132,6 +136,7 @@ Rectangle { } Row { + visible: !isMobile Item { anchors.verticalCenter: parent.verticalCenter height: 26 @@ -144,6 +149,7 @@ Rectangle { } Text { + visible: !isMobile id: balanceText anchors.verticalCenter: parent.verticalCenter font.family: "Arial" @@ -194,6 +200,7 @@ Rectangle { } } + Rectangle { anchors.top: parent.top anchors.left: parent.left @@ -210,16 +217,26 @@ Rectangle { color: "#DBDBDB" } + + Rectangle { id: menuRect anchors.left: parent.left anchors.right: parent.right anchors.bottom: parent.bottom - anchors.top: column1.bottom - anchors.topMargin: 25 + anchors.top: (isMobile)? parent.top : column1.bottom + anchors.topMargin: (isMobile)? 0 : 25 color: "#1C1C1C" + + Flickable { + contentHeight: 500 + anchors.fill: parent + clip: true + + Column { + id: menuColumn anchors.left: parent.left anchors.right: parent.right @@ -463,6 +480,8 @@ Rectangle { } + } + NetworkStatusItem { id: networkStatus anchors.left: parent.left @@ -478,6 +497,9 @@ Rectangle { anchors.bottom: parent.bottom } } + + + // indicate disabled state // Desaturate { // anchors.fill: parent |
