hyperlink 0.0.1 copy "hyperlink: ^0.0.1" to clipboard
hyperlink: ^0.0.1 copied to clipboard

A Flutter package for rendering text with clickable hyperlinks.

example/lib/main.dart

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

void main() {
  runApp(MaterialApp(
    home: Scaffold(
      appBar: AppBar(
        title: const Text('Link Rich Text Example'),
      ),
      body: const Center(
        child: Padding(
          padding: EdgeInsets.all(20.0),
          child: HyperLink(
            textStyle: TextStyle(color: Colors.black, fontSize: 15),
            linkStyle: TextStyle(
                color: Colors.red, fontWeight: FontWeight.w700, fontSize: 20),
            text:
                'Click here to visit (Google)[https://www.google.com] or Click here to visit (Apple)[https://www.apple.com]\t Happy Coding!!',
          ),
        ),
      ),
    ),
  ));
}
11
likes
0
points
552
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package for rendering text with clickable hyperlinks.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, url_launcher

More

Packages that depend on hyperlink