2024-06-04 21:10:39 +01:00
|
|
|
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
|
|
|
|
|
2024-06-04 22:14:26 +01:00
|
|
|
BetButton {
|
|
|
|
index_: index
|
|
|
|
betType: 10
|
2024-06-04 21:10:39 +01:00
|
|
|
height: parent.height
|
|
|
|
width: parent.width
|
2024-06-04 22:14:26 +01:00
|
|
|
offsetX: 510
|
|
|
|
offsetY: 110
|
2024-06-04 21:10:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|