flutter_html icon indicating copy to clipboard operation
flutter_html copied to clipboard

Fix example in README: replace EdgeInsets with HtmlPaddings in Style.padding

Open KagemaNjoroge opened this issue 2 months ago • 0 comments

The example in the README used EdgeInsets.all(16) for Style.padding, which causes a type error since the parameter expects an HtmlPaddings instance. This PR updates the example to use HtmlPaddings.all(16) instead. Also removes an unnecessary const from the first attempt.

@erickok @Sub6Resources

KagemaNjoroge avatar Oct 11 '25 11:10 KagemaNjoroge