If you want to make multiple themed apps from one flutter project? You can create the multiple flavors. In android you can add a flavors in android/app/build.gradle:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | flavorDimensions "free" productFlavors { free { dimension "app" applicationId "com.example.free" versionCode 1 versionName "1.0" } paid { dimension "app" applicationId "com.example.paid" versionCode 1 versionName "1.0" } } |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.