26 lines
419 B
QML
26 lines
419 B
QML
|
import QtQuick
|
||
|
import Qt5Compat.GraphicalEffects
|
||
|
|
||
|
import roulette
|
||
|
|
||
|
Item {
|
||
|
|
||
|
Image {
|
||
|
source: "qrc:/roulette.png"
|
||
|
signal streetBet(n: int)
|
||
|
|
||
|
//fillMode: Image.PreserveAspectFit
|
||
|
height: parent.height
|
||
|
width: parent.width
|
||
|
|
||
|
anchors {
|
||
|
top: parent.top
|
||
|
right: parent.right
|
||
|
}
|
||
|
|
||
|
StreetBetsView {
|
||
|
id: streetBets
|
||
|
}
|
||
|
}
|
||
|
}
|