Added Dozens bets.

This commit is contained in:
greek 2024-06-05 07:02:33 +01:00
parent b28ff9bb39
commit 0787bccdb8
3 changed files with 40 additions and 1 deletions

View file

@ -40,6 +40,7 @@ qt_add_qml_module(roulette-payout
Roulette.qml Roulette.qml
StreetBetsView.qml StreetBetsView.qml
Columns.qml Columns.qml
Dozens.qml
) )

36
Dozens.qml Normal file
View file

@ -0,0 +1,36 @@
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: 110
offsetY: 110
}
}
}
}
}

View file

@ -20,11 +20,13 @@ Item {
} }
StreetBetsView { StreetBetsView {
id: streetBets
} }
Columns { Columns {
} }
Dozens {
}
} }
function destroyOnClose(obj) { function destroyOnClose(obj) {