PresentationApp/qml/AboutDialog.qml

13 lines
369 B
QML
Raw Normal View History

2016-03-07 08:54:14 -08:00
import QtQuick 2.4
import QtQuick.Dialogs 1.1
MessageDialog {
icon: StandardIcon.Information
2016-02-19 08:46:03 -08:00
text: "Presentation App \nVersion: Alpha"
detailedText: "Presentation App for use in a church service\nMade in 2016 by Timmy Welch."
title: "About"
2016-02-19 08:46:03 -08:00
height: 100
width: 200
standardButtons: StandardButton.Close
}