linkify 1.0.1 linkify: ^1.0.1 copied to clipboard
Low-level link (text, URLs, emails) 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 ', LinkElement: 'https://cretezy.com' (https://cretezy.com), TextElement: ' ', EmailElement: 'person@example.com' (person@example.com)]
}