20 lines
301 B
QML
20 lines
301 B
QML
import QtQuick 2.12
|
|
import QtQuick.Controls 2.12
|
|
|
|
Column {
|
|
spacing: theme.spacing / 2
|
|
|
|
property alias label: fieldLabel
|
|
property alias field: textField
|
|
|
|
HLabel {
|
|
id: fieldLabel
|
|
}
|
|
|
|
HTextField {
|
|
id: textField
|
|
radius: 2
|
|
width: parent.width
|
|
}
|
|
}
|