linkify 5.0.0 linkify: ^5.0.0 copied to clipboard
Low-level link (text, URLs, emails, phone numbers, user tags) parsing library in Dart.
import 'package:linkify/linkify.dart';
void main() {
print(linkify("Made by https://cretezy.com person@example.com"));
// Output: [TextElement: 'Made by ', UrlElement: 'https://cretezy.com' (cretezy.com), TextElement: ' ', EmailElement: 'person@example.com' (person@example.com)]
}