23 lines
329 B
QML
23 lines
329 B
QML
// Copyright (c) Daniel Gakwaya.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import QtQuick
|
|
|
|
Window {
|
|
visible: true
|
|
width: 640
|
|
height: 480
|
|
title: qsTr("FocusScope Demo")
|
|
|
|
Column {
|
|
MButton{
|
|
color: "yellow"
|
|
focus: true
|
|
}
|
|
|
|
MButton{
|
|
color: "green"
|
|
}
|
|
}
|
|
}
|