Index: sources/gui/qml/pages/TreatmentFlowBase.qml =================================================================== diff -u -r27cc308ff5113a9386899d3c8f8b29962a8498e1 -r86e9dfbff50cb7e16fd94c16c1c818cef3b47eac --- sources/gui/qml/pages/TreatmentFlowBase.qml (.../TreatmentFlowBase.qml) (revision 27cc308ff5113a9386899d3c8f8b29962a8498e1) +++ sources/gui/qml/pages/TreatmentFlowBase.qml (.../TreatmentFlowBase.qml) (revision 86e9dfbff50cb7e16fd94c16c1c818cef3b47eac) @@ -28,6 +28,7 @@ ScreenItem { id: _root objectName: "_TreatmentFlowBase" + property alias informationText : _information.text property alias reasonText : _notification.text property alias header : _titleBar property alias title : _titleText @@ -38,6 +39,7 @@ property string instructionlocation : "" property var instructionStepNames : [] property var instructionStepImages : [] + readonly property bool instructionIsLast: instruction ? instruction.lastStep : true property bool hasTimeCircle : false readonly property alias timeCircle : _timeCircleLoader.item @@ -154,6 +156,14 @@ Footer { id: _footer } + NotificationBarSmall { id: _information + visible : text + color : Colors.transparent + textColor : Colors.white + imageSource : "" + text : "" + } + NotificationBar { id: _notification iconVisible: false }