SailTuner/qml/TunerScreen.qml

21 lines
265 B
QML
Raw Normal View History

2015-12-27 14:01:07 +03:00
import QtQuick 2.0
/**
* Main tuner screen
*
*/
Item {
/// tuner object
property QtObject tuner
/// theme corresponding to Silica Theme object
property QtObject theme
anchors.fill: parent
CircleMeter {
theme: parent.theme
anchors.fill: parent
}
}