roulette-payout/Columns.qml
greek b28ff9bb39 Added Column bets.
Also created a new BetButton QML file to be shared with all bets.
2024-06-04 22:14:26 +01:00

36 lines
650 B
QML

import QtQuick
import QtQuick.Layouts
import roulette
Item {
ColumnLayout {
anchors {
left: parent.left
leftMargin: 532
top: parent.top
topMargin: 68
}
spacing: 2
Repeater {
model: 3
Item {
height: 43
width: 35
BetButton {
index_: index
betType: 10
height: parent.height
width: parent.width
offsetX: 510
offsetY: 110
}
}
}
}
}