😽

【Flutter】ERROR:Using the Impeller rendering backend

2024/01/16に公開

https://docs.flutter.dev/perf/impeller

公式の説明を見ても、impellerって何なのか、よくわからなかったよ(^^;
とはいえエラーの解決策も公式に載ってたので、それならいいかと採用したのがこちら

To disable Impeller on iOS when deploying your app, add the following tags under the top-level <dict> tag in your app’s Info.plist file.

info.plist

  <key>FLTEnableImpeller</key>
  <false />

とは言え、単に disable するだけでいいのかな(^^;

Discussion