mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 11:28:07 +00:00
35 lines
570 B
QML
35 lines
570 B
QML
/**
|
|
* Qml template used for welcome and login/register pages
|
|
**/
|
|
|
|
import QtQuick 2.15
|
|
import QtQuick.Layouts 1.3
|
|
import QtQuick.Controls 2.2 as Control
|
|
|
|
import Linphone
|
|
|
|
Item {
|
|
id: mainItem
|
|
|
|
RowLayout {
|
|
spacing: 10
|
|
Layout.fillHeight: true
|
|
VerticalTabBar {
|
|
Layout.fillHeight: true
|
|
}
|
|
ColumnLayout {
|
|
Layout.fillHeight: true
|
|
TextInput {
|
|
fillWidth: true
|
|
placeholderText: qsTr("Rechercher un contact, appeler ou envoyer un message...")
|
|
}
|
|
Image {
|
|
//avatar
|
|
}
|
|
Button {
|
|
// color: DefaultStyle.moreButtonBackground
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|