flutter_linkify icon indicating copy to clipboard operation
flutter_linkify copied to clipboard

Turns text URLs and emails into clickable inline links in text for Flutter

Results 54 flutter_linkify issues
Sort by recently updated
recently updated
newest added

Multiline text doesn't work as expected. Tested on 4.0.2 and 4.1.0. ```dart Linkify( onOpen: (link) async => await canLaunch(link.url) && await launch(link.url), text: channel.description, options: LinkifyOptions( defaultToHttps: false, humanize: false,...

bug

Hello, first off, thanks very much for this package! I have a project deployed to iOS, android and web. There is a use case where people will visit the web...

Hello I have tested with Linkify, and the parameter "textScaleFactor" is handled. This is not the case with SelectableLinkify. Could you please correct it ? P.S : Your package is...

bug

Hi, i am facing a issue like, whatever the widget we are built below linkify widget its getting overlapping at bottom as you can see the snap below : I...

bug

With 4.0.2: With 4.1.0: Example code where this happens: ``` var card = Card( shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(6.0), ), elevation: 8.0, margin: new EdgeInsets.symmetric(horizontal: paddingHorizontalValue), child: Padding( padding: const EdgeInsets.all(20.0),...

bug

``` Linkify( text: "Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. https://google.com test", ) ``` only `https://google.com...

bug

Toolbar Options are not dismissible for SelectableLinkify widget if tapped outside the widget

Fixed a problem in which the selectable menu was not displayed.

Thank you for good library. I'm working on some extension for it on my project. There is custom Linkifier example I've described in other issue here https://github.com/Cretezy/flutter_linkify/issues/124#issuecomment-1865867656 . It works,...

Is there/there should be, a way to create custom links for things such as going @userId, ideally the system would then replace the userId which is the real text with...