Commit 20ba71a0 authored by Ronan Abhamon's avatar Ronan Abhamon

feat(ui/modules/Linphone/TelKeypad): in progress

parent a148be81
......@@ -318,6 +318,8 @@
<file>ui/modules/Linphone/Styles/qmldir</file>
<file>ui/modules/Linphone/Styles/SmartSearchBarStyle.qml</file>
<file>ui/modules/Linphone/Styles/TimelineStyle.qml</file>
<file>ui/modules/Linphone/TelKeypad/TelKeypadButton.qml</file>
<file>ui/modules/Linphone/TelKeypad/TelKeypad.qml</file>
<file>ui/modules/Linphone/Timeline.qml</file>
<file>ui/scripts/LinphoneUtils/linphone-utils.js</file>
<file>ui/scripts/LinphoneUtils/qmldir</file>
......
import QtQuick 2.7
// =============================================================================
Grid {
property var call
// ---------------------------------------------------------------------------
columns: 3
Repeater {
model: [{
text: '1',
icon: 'answering_machine'
}, {
text: '2'
},{
text: '3'
}, {
text: '4'
}, {
text: '5'
}, {
text: '6'
}, {
text: '7'
}, {
text: '8'
}, {
text: '9'
}, {
text: '*'
}, {
text: '0',
icon: 'plus'
}, {
text: '#'
}]
TelKeypadButton {
icon: modelData.icon
text: modelData.text
onClicked: console.log('TODO')
}
}
}
import QtQuick 2.7
// =============================================================================
Item {}
......@@ -27,4 +27,6 @@ PresenceLevel 1.0 Presence/PresenceLevel.qml
SmartSearchBar 1.0 SmartSearchBar.qml
TelKeypad 1.0 TelKeypad.qml
Timeline 1.0 Timeline.qml
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment