linphone-desktop/ui/views/App/Main/Assistant/CreateLinphoneSipAccount.qml
2017-06-14 18:05:18 +02:00

40 lines
1.1 KiB
QML

import QtQuick 2.7
import Common 1.0
import App.Styles 1.0
// =============================================================================
AssistantAbstractView {
description: qsTr('createLinphoneSipAccountDescription')
title: qsTr('createLinphoneSipAccountTitle')
// ---------------------------------------------------------------------------
// Menu.
// ---------------------------------------------------------------------------
Column {
anchors.centerIn: parent
spacing: CreateLinphoneSipAccountStyle.buttons.spacing
width: CreateLinphoneSipAccountStyle.buttons.button.width
TextButtonA {
text: qsTr('withPhoneNumber')
height: CreateLinphoneSipAccountStyle.buttons.button.height
width: parent.width
onClicked: assistant.pushView('CreateLinphoneSipAccountWithPhoneNumber')
}
TextButtonA {
text: qsTr('withEmailAddress')
height: CreateLinphoneSipAccountStyle.buttons.button.height
width: parent.width
onClicked: assistant.pushView('CreateLinphoneSipAccountWithEmail')
}
}
}