76b699ad64
Put QML components into folders, remove unused ones, split __init__.py with engine.py.
13 lines
239 B
QML
13 lines
239 B
QML
import QtQuick 2.7
|
|
import QtQuick.Controls 2.0
|
|
|
|
Label {
|
|
property int bigSize: 24
|
|
property int normalSize: 16
|
|
property int smallSize: 12
|
|
|
|
font.family: "Roboto"
|
|
font.pixelSize: normalSize
|
|
textFormat: Text.PlainText
|
|
}
|