moment/src/qml/Base/HLabeledTextField.qml

24 lines
393 B
QML
Raw Normal View History

// Copyright 2019 miruka
// This file is part of harmonyqml, licensed under LGPLv3.
import QtQuick 2.12
import QtQuick.Controls 2.12
Column {
spacing: 4
property alias label: fieldLabel
property alias field: textField
HLabel {
id: fieldLabel
}
HTextField {
id: textField
bordered: true
radius: 2
width: parent.width
}
}