LunaGao / Url_Text

flutter plugin for mix url and text

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

url_text

Url Test. Identify web links in text and make them clickable.

What is looks like?

Screenshot

Getting Started

UrlText(
    'This https://www.google.com is jump to Google.',
    urlStyle: TextStyle(
        color: Colors.purple,
        fontStyle: FontStyle.italic,
        fontWeight: FontWeight.w800),
    style: TextStyle(color: Colors.pink),
    markdown: false,
),
UrlText(
    'Or just using the markdown. [This is Google Web](https://www.google.com).',
    urlStyle: TextStyle(
        color: Colors.purple,
        fontStyle: FontStyle.italic,
        fontWeight: FontWeight.w800),
    style: TextStyle(color: Colors.pink),
    markdown: true,
),

Publish to Pub.dev

flutter format .
flutter pub publish --dry-run
flutter pub publish

About

flutter plugin for mix url and text

License:BSD 2-Clause "Simplified" License


Languages

Language:Dart 76.3%Language:Ruby 18.8%Language:Swift 3.4%Language:Kotlin 1.2%Language:Objective-C 0.3%