roulette-payout/Columns.qml

37 lines
650 B
QML
Raw Permalink Normal View History

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
}
}
}
}
}