roulette-payout/Dozens.qml

37 lines
647 B
QML
Raw Permalink Normal View History

2024-06-05 07:02:33 +01:00
import QtQuick
import QtQuick.Layouts
import roulette
Item {
RowLayout {
anchors {
left: parent.left
leftMargin: 90
top: parent.top
topMargin: 204
}
spacing: 2
Repeater {
model: 3
Item {
height: 26
width: 145
BetButton {
index_: index
betType: 7
height: parent.height
width: parent.width
offsetX: 200
offsetY: 225
2024-06-05 07:02:33 +01:00
}
}
}
}
}