linphone-desktop/tests/ui/components/form/DialogButton.qml
2016-09-08 15:17:16 +02:00

18 lines
404 B
QML

import QtQuick 2.7
import QtQuick.Controls 2.0
Button {
background: Rectangle {
color: button.down ? '#FE5E00' : '#434343'
implicitWidth: 120
implicitHeight: 30
radius: 4
}
contentItem: Text {
color: '#FFFFFF'
text: button.text
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
}
id: button
}