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'
|
|
}
|
|
}
|
|
|
|
}
|
|
|