Flutter_html: flutter_svg support

Created on 14 Sep 2020  路  4Comments  路  Source: Sub6Resources/flutter_html

Hi, when I updated to the latest version I received the following error:
Because flutter_html >=1.0.2 depends on flutter_svg ^0.18.0 and App depends on flutter_svg ^0.19.0, flutter_html >=1.0.2 is forbidden.
So, because App depends on flutter_html ^1.0.2, version solving failed.
pub upgrade failed (1; So, because App depends on flutter_html ^1.0.2, version solving failed.)

Most helpful comment

Use this in your pubspec.yaml file:

dependency_overrides:
   flutter_svg: ^0.19.0

Flutter_svg doesn't have any breaking changes from 0.18.0 to 0.19.0 so overriding it safe.

All 4 comments

Use this in your pubspec.yaml file:

dependency_overrides:
   flutter_svg: ^0.19.0

Flutter_svg doesn't have any breaking changes from 0.18.0 to 0.19.0 so overriding it safe.

@ryan-berger
Fixes are more then welcome

Fixed by #418

Please upgrade to 1.1.1 and this will be fixed

Was this page helpful?
0 / 5 - 0 ratings