2026-04-22 10:08:43 +02:00
|
|
|
import QtQuick 2.15
|
|
|
|
|
import QtQuick.Controls 2.15
|
|
|
|
|
import QtQuick.Layouts 1.15
|
2026-04-22 19:18:59 -03:00
|
|
|
import "pages"
|
2026-04-22 10:08:43 +02:00
|
|
|
|
|
|
|
|
Item {
|
|
|
|
|
id: root
|
|
|
|
|
|
2026-04-28 14:41:54 +02:00
|
|
|
NavBar {
|
|
|
|
|
id: navbar
|
|
|
|
|
anchors.top: parent.top
|
|
|
|
|
anchors.left: parent.left
|
|
|
|
|
anchors.right: parent.right
|
|
|
|
|
z: 100
|
2026-04-22 10:08:43 +02:00
|
|
|
}
|
|
|
|
|
|
2026-04-28 14:41:54 +02:00
|
|
|
Item {
|
|
|
|
|
anchors.top: navbar.bottom
|
|
|
|
|
anchors.left: parent.left
|
|
|
|
|
anchors.right: parent.right
|
|
|
|
|
anchors.bottom: parent.bottom
|
2026-04-22 10:08:43 +02:00
|
|
|
|
2026-05-12 13:59:32 +02:00
|
|
|
SwapPage {
|
2026-04-28 14:41:54 +02:00
|
|
|
anchors.fill: parent
|
|
|
|
|
visible: navbar.currentIndex === 0
|
2026-04-22 10:08:43 +02:00
|
|
|
}
|
|
|
|
|
|
2026-04-22 19:18:59 -03:00
|
|
|
LiquidityPage {
|
2026-04-22 10:08:43 +02:00
|
|
|
anchors.fill: parent
|
2026-04-28 14:41:54 +02:00
|
|
|
visible: navbar.currentIndex === 1
|
2026-04-22 10:08:43 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|