Sharing constants between Android , iOS and Dart in a Flutter Project

354 Views Asked by At

Is there any workaround to share constant variables between the android ,iOS and dart code? This can be especially useful when using Platform Channels as the Channel name, method names and argument key names are kept in a constants file and alternately the same file is created in kotlin and swift to match . Can we avoid this duplication by keeping a common file that can be shared and accessed by the 3 platforms?

2

There are 2 best solutions below

2
On
  • you can use flutter run —dart-define MY_DATA=SomeString. see

  • example


static class AppConfig{
  static const String MY_DATA= String.fromEnvironment("MY_DATA",
      defaultValue: 'initValue');
}

void test(){
     print(AppConfig.MY_DATA);
}

0
On

Regarding unified Platform Channels usage pigeon package could be used to simplify the whole process. But for now, it does not resolve in particular constants sharing.