mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 03:18:07 +00:00
19 lines
No EOL
174 B
QML
19 lines
No EOL
174 B
QML
import QtQuick 2.15
|
|
import QtQuick.Layouts 1.0
|
|
import Linphone
|
|
|
|
Item{
|
|
id: mainItem
|
|
|
|
|
|
RowLayout{
|
|
Button{
|
|
text: 'Sign In'
|
|
}
|
|
Button{
|
|
text: 'Sign Out'
|
|
}
|
|
}
|
|
|
|
}
|
|
|