@RokeJulianLockhart said in If I want to adhere to the platform styles, what's the best Qt stack?:
I see little way to achieve Material 3 support in QtWidgets
Correct, there is no Material support in Qt Widgets
I'd like to know whether these QQuickStyles can be switched between per platform, or whether the GUI must be rewritten for each style?
Yes, you can switch between different styles.
The default styles for different platforms are listed at https://doc.qt.io/qt-6/qtquickcontrols-styles.html#default-styles
You can call a function and/or provide a config file to specify non-default styles: https://doc.qt.io/qt-6/qtquickcontrols-styles.html#run-time-style-selection (the config file also lets you specify style-specific options, like Material Design accent colours)
Per stackoverflow.com/revisions/21774118/1, I'll presume that I'll get native styling on KDE Plasma, my DE, too.
I'm not familiar with how KDE Plasma styles its controls. If it provides a Qt Quick Controls plugin, then yes you can configure your app's Qt Quick Controls to use the KDE style (using the same function/config file that I mentioned above).