Index: sources/gui/qml/components/StackItem.qml =================================================================== diff -u -r5194f3afffb28dac90a7ca4153b6a0ca2f239387 -rfee7fabf49befb065c89248c19e15efc9ca194e4 --- sources/gui/qml/components/StackItem.qml (.../StackItem.qml) (revision 5194f3afffb28dac90a7ca4153b6a0ca2f239387) +++ sources/gui/qml/components/StackItem.qml (.../StackItem.qml) (revision fee7fabf49befb065c89248c19e15efc9ca194e4) @@ -1,6 +1,6 @@ /*! * - * Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. + * Copyright (c) 2019-2019 Diality Inc. - All Rights Reserved. * \copyright \n * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, \n * IN PART OR IN WHOLE, \n @@ -29,6 +29,13 @@ width : Variables.applicationWidth height: Variables.applicationHeight + function pop () { + _stackView.pop() + } + function push (vScreen) { + _stackView.push(vScreen) + } + StackView { id : _stackView initialItem : null anchors.fill: parent