mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2025-12-06 05:25:41 -05:00
25 lines
498 B
QML
25 lines
498 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import qs.Common
|
|
import qs.Services
|
|
import qs.Widgets
|
|
|
|
DankActionButton {
|
|
id: customButtonKeyboard
|
|
circular: false
|
|
property string text: ""
|
|
width: 40
|
|
height: 40
|
|
property bool isShift: false
|
|
color: Theme.surface
|
|
|
|
StyledText {
|
|
id: contentItem
|
|
anchors.centerIn: parent
|
|
text: parent.text
|
|
color: Theme.surfaceText
|
|
font.pixelSize: Theme.fontSizeXLarge
|
|
font.weight: Font.Normal
|
|
}
|
|
}
|