solitare/Main.qml

26 lines
374 B
QML

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
}
PlayingCard {
color: "clubs"
value: "ace"
isFaceDown: true
}
}