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