QML TextArea in dark theme macos wrong defaults
Unsolved
QML and Qt Quick
-
TextArea darktheme macos issue
It requires the following fix for every TextArea I use
SystemPalette { id: systemPalette; colorGroup: SystemPalette.Active; }
TextArea { selectionColor: systemPalette.highlight selectedTextColor: systemPalette.highlightedText }
also notice QML ToolBar's
ToolButton
item does not support dark theme, withsvg
iconwhile PushButton work perfectly ok. and show the svg in white on dark theme, and white on light theme.