aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/quickplugins/quick-sample.qml
blob: 18b10d777ef22e02f6a8742b2c8b6f0ecd9b7f0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Plugin-Name=Sample
// Plugin-Description=A simple example for QtQuick/QML plugins
// Plugin-Icon=preferences-plugin
// Created: Ken Moore (ken@pcbsd.org) May 2015

import QtQuick.Controls 1.3

Label {
	text: "Sample"
	color: "blue"
	font.bold: true
}
bgstack15