2019-07-13 20:15:20 -04:00
|
|
|
// Copyright 2019 miruka
|
|
|
|
// This file is part of harmonyqml, licensed under LGPLv3.
|
|
|
|
|
|
|
|
import QtQuick 2.12
|
|
|
|
import QtQuick.Controls 2.12
|
|
|
|
|
|
|
|
Column {
|
2019-07-16 05:29:47 -04:00
|
|
|
spacing: theme.spacing / 2
|
2019-07-13 20:15:20 -04:00
|
|
|
|
|
|
|
property alias label: fieldLabel
|
|
|
|
property alias field: textField
|
|
|
|
|
|
|
|
HLabel {
|
|
|
|
id: fieldLabel
|
|
|
|
}
|
|
|
|
|
|
|
|
HTextField {
|
|
|
|
id: textField
|
|
|
|
radius: 2
|
|
|
|
width: parent.width
|
|
|
|
}
|
|
|
|
}
|