Approach for multiplatform App from single codebase.
-
So I’m building an app with Quasar framework which should run on both Android and iOS. In combination with the cordova wrapper and ios/mat themes Quasar provides this is a real breeze!
I would like my native (cordova) app for iOS use the iOS theme and the Android app use the Material theme. How can I accomplish this?
-
@boyd Make two builds. ‘quasar build mat’ and ‘quasar build ios’. Note that each build command replaces the existing ‘dist’ folder. After each Quasar build you can make a cordova build. Let me know if you need a more detailed explanation.