AusweisApp2/resources/qml/Governikus/Provider/ProviderDetailDescription_t...

27 lines
489 B
QML
Raw Normal View History

2017-07-03 09:30:10 +02:00
import QtQuick 2.6
2017-12-20 14:54:05 +01:00
import Governikus.Global 1.0
2017-07-03 09:30:10 +02:00
2017-07-03 09:33:28 +02:00
Column {
2017-07-03 09:30:10 +02:00
id: baseItem
2017-07-03 09:33:28 +02:00
spacing: Constants.pane_spacing
2017-07-03 09:30:10 +02:00
property string description: ""
2017-07-03 09:33:28 +02:00
Text {
font.pixelSize: Constants.header_font_size
2017-12-20 14:54:05 +01:00
color: Constants.blue
text: qsTr("Description") + settingsModel.translationTrigger
2017-07-03 09:33:28 +02:00
}
2017-07-03 09:30:10 +02:00
2017-07-03 09:33:28 +02:00
Text {
2018-03-28 15:10:51 +02:00
color: Constants.secondary_text
2017-07-03 09:33:28 +02:00
font.pixelSize: Constants.normal_font_size
2017-12-20 14:54:05 +01:00
horizontalAlignment: Text.AlignLeft
2017-07-03 09:33:28 +02:00
text: baseItem.description
width: parent.width
wrapMode: Text.Wrap
2017-07-03 09:30:10 +02:00
}
}