30 lines
424 B
QML
30 lines
424 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
GridLayout
|
|
{
|
|
columns: 2
|
|
Label
|
|
{
|
|
text: qsTr("IBAN")
|
|
Layout.alignment: Qt.AlignRight
|
|
}
|
|
TextField
|
|
{
|
|
id: iban
|
|
Layout.fillWidth: true
|
|
}
|
|
Label
|
|
{
|
|
text: qsTr("Bank")
|
|
Layout.alignment: Qt.AlignRight
|
|
|
|
}
|
|
TextField
|
|
{
|
|
id: bankname
|
|
Layout.fillWidth: true
|
|
}
|
|
}
|