Files
status-app/ui/shared/TransactionFormGroup.qml
T

13 lines
292 B
QML
Raw Normal View History

2020-08-20 14:45:29 +10:00
import QtQuick 2.13
import QtQuick.Controls 2.13
import "../imports"
FormGroup {
id: root
property string headerText
property string footerText
property bool showBackBtn: true
property bool showNextBtn: true
property var onBackClicked
property var onNextClicked
2020-08-20 14:45:29 +10:00
}