flutter_linkify
flutter_linkify copied to clipboard
Turns text URLs and emails into clickable inline links in text for Flutter
 Mutiple Lines in the Link is causing the widget to expand. MaxLines and Overflow works on normal text but not on Links. ``` Linkify( maxLines: 1, overflow: TextOverflow.ellipsis, text:...
Add a simple extension of `TextSpan` that directly uses `buildTextSpan`. `LinkifySpan` is an `InlineSpan` which means that users have more flexibility when using Linkify inside existing `TextSpan` constructs. Bump min...
When I linkify the text like "{url: https:abc.com}" or "{url: https:abc.com, msg:abc}", the "," and "}" are identified into linkified text.
when getting text like suggestions..on that is show as an url. So if you have any fix for it please provide.
Example code: ``` import 'package:flutter/material.dart'; import 'package:flutter_linkify/flutter_linkify.dart'; void main() => runApp(LinkifyExample()); class LinkifyExample extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( debugShowCheckedModeBanner: false, title: 'flutter_linkify example', home: Scaffold(...
Hi, If I understand flutter_linkify correctly, it can convert the text "https://some-nice-url" into a link, but the visible link text would also be "https://some-nice-url", correct? Is it possible to support...
Packages should not commit the "pubspec.lock" file. See https://stackoverflow.com/a/16136740/8358501
Long text with multiple links in ScrollView overlapping. iOS Version: 15.1 (iPhone X). Does anyone have the same issue? Any help would be appreciated, thank you.  **Flutter Doctor:** Doctor...
When I set **options: LinkifyOptions(humanize: false, looseUrl: false)**, the text concats with 'http/https' automatically. Example: - My text: abc.com => Display text: http://abc.com - The same case is with email.
What are your thoughts about custom linkStyles for different LinkifyElements? I'm imagining something a twitter/facebook post with hashtags, @usernames, links, etc... e.g. `hello @username check out this link at https://www.link.com...