Cretezy / flutter_linkify

Turns text URLs and emails into clickable inline links in text for Flutter
https://pub.dartlang.org/packages/flutter_linkify
MIT License
262 stars 99 forks source link

Wrong font size #135

Open gabrc52 opened 3 months ago

gabrc52 commented 3 months ago

The font size is wrong (it does not respect the end user's font size preferences).

This is because you are hardcoding the scale factor to 1.0:

this.textScaleFactor = 1.0

You should use the default scale factor if the developer using this library does not pass one explicitly.

gabrc52 commented 3 months ago

I have submitted a PR for this issue: https://github.com/Cretezy/flutter_linkify/pull/136