@costasjames479 I am aware that other styles are available for Qt Quick Controls. However, according to the documentation, the Basic Style is the most performant and platform-compatible, which is why I prefer to use it. With this in mind, how can I figure out what to place as the attribute or property name instead of ? in the following code:
TextField {
palette {
?: "blue"
?: "white"
}
}
ComboBox {
palette {
?: "blue"
?: "white"
}
}
In other words, is there a detailed list in the documentation that specifies the name of each attribute, which I might have overlooked?