solitare/Main.qml

26 lines
373 B
QML

import Solitare
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
ApplicationWindow {
width: 640
height: 480
visible: true
title: qsTr("Solitare")
ScoreBar {
id: scoreBar
height: 50
score: 120
time: 500
moves: 64
}
CardModel {
anchors.centerIn: parent
card: myCard
}
}