Active eCommerce Flutter App Documentation
- How to run Flutter Application in Android Studio?
- How to configure the App according to your setup?
- How to change the package name ?
- How to Build the app for testing (build an apk) ?
- How to generate play store uploadable files for release?
- How to run IOS? **Read all the points carefully before doing anything
- How to generate app store uploadable files?
- How to update for android? **Read all the points carefully before doing anything
- How to configure social login?
- How to configure push notification?
- How to configure google map? (Read the whole thing before implementing)
- How to configure the default language for mobile apps?
- How to configure multiple languages for mobile app? (Read the whole thing before implementing)
- How to remove cache data.
How to configure the default language for mobile apps?
Go to your flutter project->lib->app_config.dart
Change variables value //Default language config
static String default_language ="en";
static String mobile_app_code ="en";
static bool app_language_rtl =false;
This value you can find in your admin panel. Go to your admin panel->setup & configurations->languages.

