英文:
MissingPluginException(No implementation found for method loadEnvVariables on channel flutter_config)
问题
每当我尝试在Chrome上运行应用程序时,都会出现异常MissingPluginException(在flutter_config通道上找不到loadEnvVariables方法的实现),每次都只显示空白白屏。
英文:
When ever I am trying to run the app using chrome its giving me exception MissingPluginException(No implementation found for method loadEnvVariables on channel flutter_config) and only blank white screen is shown every time.
答案1
得分: 1
flutter_config 不支持 web 平台 - 仅支持 Android 和 iOS。
这是一个在Flutter中将环境变量暴露给Dart代码以及在iOS和Android中将环境变量暴露给本机代码的插件。
英文:
flutter_config doesn't support web platform - only Android and iOS.
> Plugin that exposes environment variables to your Dart code in Flutter as well as to your native code in iOS and Android.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论