Flutter: iOSでSelectableTextで文字を選択するとクラッシュする


iOs で SelectableText で文字を表示し、選択しようとしたところエラーが発生しました。

No CupertinoLocalizations found.

対処方法

localizationsDelegates を指定している箇所に下記を追加するとエラー発生しなくなります。

GlobalCupertinoLocalizations.delegate,

実装例

MaterialApp.router(
  localizationsDelegates: const [
    GlobalCupertinoLocalizations.delegate,
  ],
)