2019-09-10 12:35:55 +02:00
|
|
|
import QtQuick 2.0
|
2020-08-18 11:45:23 +02:00
|
|
|
import QtQuick.Layouts 1.12
|
|
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
2019-09-10 12:35:55 +02:00
|
|
|
import org.kde.plasma.components 3.0 as PlasmaComponents
|
|
|
|
|
2019-12-09 17:33:23 +01:00
|
|
|
ComponentBase {
|
2019-09-10 12:35:55 +02:00
|
|
|
id: root
|
2020-08-18 11:45:23 +02:00
|
|
|
title: "Plasma Components 3 TextField"
|
2019-09-10 12:35:55 +02:00
|
|
|
property string longText: "This is a longer sentence"
|
|
|
|
|
2020-08-18 11:45:23 +02:00
|
|
|
contentItem: Flow {
|
|
|
|
spacing: PlasmaCore.Units.gridUnit
|
2019-09-10 12:35:55 +02:00
|
|
|
|
|
|
|
PlasmaComponents.TextField {
|
|
|
|
placeholderText: longText
|
|
|
|
}
|
|
|
|
|
|
|
|
PlasmaComponents.TextField {
|
|
|
|
text: root.longText
|
|
|
|
}
|
|
|
|
|
|
|
|
PlasmaComponents.TextField {
|
|
|
|
width: 400
|
|
|
|
placeholderText: longText
|
|
|
|
}
|
|
|
|
|
|
|
|
PlasmaComponents.TextField {
|
|
|
|
text: root.longText
|
|
|
|
echoMode: TextInput.Password
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|