2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

flutter_svg で No named parameter with the name 'nullOk'. エラー

2
Posted at

はじめに

flutter で SVG 画像を表示したいと思い方法を探していると、以下のパッケージを使っている記事が多かったので採用することに。(pub.dev で検索してみましたが、他に良さそうなパッケージもなかったこともあり)

環境

Flutter (Channel beta, 1.26.0-17.6.pre, on macOS 11.2.1 20D74 darwin-x64, locale en-GB)

エラー内容

こちらが表示されて SVG 画像を表示することができませんでした。

No named parameter with the name 'nullOk'.

解決方法

GitHub の Issue に同様の問題でやりとりされていました。

私の環境では以下のように flutter_svg のバージョンをあげ、 nullsafety のパッケージに変更することで解消しました。

pubspec.yaml
  flutter_svg: 0.21.0-nullsafety.0
2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?