How do I change the cursor color and probably width in QML TextField
element?
Let's say we have the following:
import QtQuick 2.12import QtQuick.Controls 2.12TextField { id: control placeholderText: qsTr("Enter description") background: Rectangle { implicitWidth: 200 implicitHeight: 40 color: control.enabled ? "transparent" : "#353637" border.color: control.enabled ? "#21be2b" : "transparent" }}
How to make cursor color green or blue or whatever?