mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-24 07:08:07 +00:00
17 lines
377 B
QML
17 lines
377 B
QML
import QtQuick 2.7
|
|
import QtQuick.Controls 2.0
|
|
|
|
Button {
|
|
background: Rectangle {
|
|
color: button.down ? '#FE5E00' : '#434343'
|
|
implicitWidth: 120
|
|
radius: 4
|
|
}
|
|
contentItem: Text {
|
|
color: '#FFFFFF'
|
|
text: button.text
|
|
horizontalAlignment: Text.AlignHCenter
|
|
verticalAlignment: Text.AlignVCenter
|
|
}
|
|
id: button
|
|
}
|