linkify_text 0.0.9 copy "linkify_text: ^0.0.9" to clipboard
linkify_text: ^0.0.9 copied to clipboard

LinkifyText is a Text widget that highlight all the links in the text. It further navigates user to the link using browser on tapping on highlighted link.

example/example.dart

import 'package:flutter/material.dart';
import 'package:linkify_text/linkify_text.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: MyHomePage(),
    );
  }
}

class MyHomePage extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(
        child: LinkifyText(
          "please visit google.com",
          fontSize: 15.0,
          linkColor: Colors.blue,
          fontColor: Colors.black,
          fontWeight: FontWeight.w500,
          isLinkNavigationEnable:
              true, //By Default it is true. If it is false, user would not navigate to the link on tapping
        ),
      ),
    );
  }
}
22
likes
120
pub points
69%
popularity

Publisher

unverified uploader

LinkifyText is a Text widget that highlight all the links in the text. It further navigates user to the link using browser on tapping on highlighted link.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, url_launcher

More

Packages that depend on linkify_text