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
263 stars 99 forks source link

RichText --> Text.rich #53

Closed Sorunome closed 3 years ago

Sorunome commented 3 years ago

RichText introduces several problems, e.g. font scaling not working properly. People are meant to use Text.rich instead, where RichText is more meant to be a flutter-internal widget. See https://github.com/flutter/flutter/issues/14675

As such, RichText might be renamed to RawText in the future anyways, to discourage its use https://github.com/flutter/flutter/issues/24722

This PR replaces RichText with Text.rich

CLAassistant commented 3 years ago

CLA assistant check
All committers have signed the CLA.

Cretezy commented 3 years ago

LGTM!