linphone-desktop/tests/ui/components/form/DialogButton.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
}