How to develop for more than one style
Unsolved
QML and Qt Quick
-
I've been using the Material style on my app and now I would like to support the new iOS style too. My code is littered with Material.accent, Material.foreground and other Material style specific stuff.
I cannot keep them because importing Material will switch the component to the Material style. I'm looking for a way to remove them.
I'm trying with file selectors but code duplication and code "splitting" in many files is not manageable.
I found a nice tecnique here: https://forum.qt.io/post/379136 but it's overly complex.Did someone really tried to use Material and iOS styles together?