Change theme depending on device OS
-
I have developed a pwa app and I need to publish both ios an material theme at the the same time, so users can see the theme depends on there device OS, unfortunately I can’t build both themes so what can I do, I am using firebase as back end
-
You’ll still need to build two separate build for different themes, then probably in your landing page you’ll have to detect what platform the user is currently on and redirect them to the appropriate themed servers. What’s stopping you from building two themes tho? since you can do just
quasar build -m pwa -t ios
for IOS themed build orquasar build -m pwa
for the material one and still maintain one codebase.