Richard
Richard

Reputation: 43

HTML Render is not working on flutter 3.29.0

API network images are not shows on flutter web once I update flutter to 3.29.0. I used to run html render command and the images was showing so fine but once I update flutter the command is not working any more. Is there are any other command are just work the same as html render ?

Upvotes: 1

Views: 73

Answers (2)

Yugene
Yugene

Reputation: 3267

The HTML renderer is removed from Flutter 3.29.

For more information, visit The intent to deprecate and remove the HTML renderer in Flutter web and Issue 145584: Intent to deprecate and remove the HTML renderer in Flutter web.

Upvotes: 0

shotmeinthehead
shotmeinthehead

Reputation: 1301

As @Richard mentioned the error is : Could not find an option named "--web-renderer"

I have found the same problem mentioned in https://github.com/flutter/flutter/issues/163199

Try following solution from @Crucialjun

"Go to vscode settings and search for "flutterWebRenderer" set the value to flutter-default on both user and workspace"

if that does not work, try doing a further reading into https://github.com/flutter/flutter/issues/145954

The team made a breaking changes on that, and the discussion is still going

Upvotes: 1

Related Questions