Sub6Resources / flutter_html

A Flutter widget for rendering static html as Flutter widgets (Will render over 80 different html tags!)
https://pub.dev/packages/flutter_html
MIT License
1.79k stars 860 forks source link

Can you add a zoom in feature for text in html [FEATURE] #1225

Closed dhvani-2023 closed 1 year ago

dhvani-2023 commented 1 year ago

feature request Can you add a zoom in feature for text in html

erickok commented 1 year ago

Maybe https://pub.dev/packages/zoom_widget can help? flutter_html just renders in Flutter widgets so without testing I'd say this is all you need?

dhvani-2023 commented 1 year ago

Maybe https://pub.dev/packages/zoom_widget can help? flutter_html just renders in Flutter widgets so without testing I'd say this is all you need?

Not working

FabienZE commented 1 year ago

I personnally use a flutter native InteractiveViewer around Html widget and it works fine !

InteractiveViewer(
  Html(
           data: ...
  ),
),

with pan or scale gesture, you're able to zoom

Sub6Resources commented 1 year ago

There are some good options out there. We won't support this out of the box.