All Projects → aleksanderwozniak → link_text

aleksanderwozniak / link_text

Licence: Apache-2.0 license
Easy to use text widget for Flutter apps, which converts inlined urls into working, clickable links

Programming Languages

dart
5743 projects
swift
15916 projects
kotlin
9241 projects
objective c
16641 projects - #2 most used programming language

Projects that are alternatives of or similar to link text

React Native Hyperlink
A <Hyperlink /> component for react-native that makes urls, fuzzy links, emails etc clickable
Stars: ✭ 572 (+2760%)
Mutual labels:  url, text, link
flutter sliding tutorial
User onboarding library with smooth animation of objects and background colors
Stars: ✭ 127 (+535%)
Mutual labels:  flutter-plugin, flutter-package
custom-permalinks
Set custom permalinks on a per-post basis in WordPress
Stars: ✭ 17 (-15%)
Mutual labels:  url, link
flutter easyloading
✨A clean and lightweight loading/toast widget for Flutter, easy to use without context, support iOS、Android and Web
Stars: ✭ 1,021 (+5005%)
Mutual labels:  flutter-plugin, flutter-package
quill-magic-url
Automatically convert URLs to links in Quill
Stars: ✭ 86 (+330%)
Mutual labels:  url, link
ngx-linkifyjs
Angular V8 wrapper for linkifyjs - library for finding links in plain text and converting them to HTML <a> tags via linkifyjs
Stars: ✭ 40 (+100%)
Mutual labels:  url, text
simple gesture detector
Easy to use, reliable and lightweight gesture detector for Flutter apps, exposing simple API for basic gestures
Stars: ✭ 26 (+30%)
Mutual labels:  flutter-plugin, flutter-package
Ybattributetexttapaction
一行代码添加文本点击事件/a fast way to implement click event text
Stars: ✭ 430 (+2050%)
Mutual labels:  text, link
stop watch timer
This is Stop Watch Timer for flutter plugin.🏃‍♂️
Stars: ✭ 76 (+280%)
Mutual labels:  flutter-plugin, flutter-package
getwidget-docs
Get Widgets UI library docs.
Stars: ✭ 17 (-15%)
Mutual labels:  flutter-plugin, flutter-package
flutter-app
Full Feature Todos Flutter Mobile app with fireStore integration.
Stars: ✭ 138 (+590%)
Mutual labels:  flutter-plugin, flutter-package
fbvideos
🔗 Easily extract downloadable link of publicly available videos on facebook.
Stars: ✭ 28 (+40%)
Mutual labels:  url, link
reachable-urls
Check URLs are reachable in text 🕵️
Stars: ✭ 29 (+45%)
Mutual labels:  url, link
URL-Shortner-Bot-V2
A link shortner telegram bot version 2 with advanced features
Stars: ✭ 18 (-10%)
Mutual labels:  url, link
Free-RASP-Flutter
Flutter library for improving app security and threat monitoring on Android and iOS mobile devices.
Stars: ✭ 62 (+210%)
Mutual labels:  flutter-plugin, flutter-package
flutter ume
UME is an in-app debug kits platform for Flutter. Produced by Flutter Infra team of ByteDance
Stars: ✭ 1,792 (+8860%)
Mutual labels:  flutter-plugin, flutter-package
qrcode
A flutter plugin for scanning QR codes. Use AVCaptureSession in iOS and zxing in Android.
Stars: ✭ 69 (+245%)
Mutual labels:  flutter-plugin, flutter-package
cross connectivity
A Flutter plugin for handling Connectivity and REAL Connection state in the mobile, web and desktop platforms. Supports iOS, Android, Web, Windows, Linux and macOS.
Stars: ✭ 27 (+35%)
Mutual labels:  flutter-plugin, flutter-package
barcode.flutter
barcode generate library for Flutter
Stars: ✭ 58 (+190%)
Mutual labels:  flutter-plugin, flutter-package
seo renderer
A Flutter Web Plugin to display Text Widget as Html for SEO purpose
Stars: ✭ 103 (+415%)
Mutual labels:  flutter-plugin, flutter-package

LinkText

Pub Package

Easy to use text widget for Flutter apps, which converts inlined URLs into clickable links. Allows custom styling.

Image

Usage

LinkText widget does not require any setup. Simply pass a String with inlined URLs, and the widget will take care of the rest.

final String _text = 'Lorem ipsum https://flutter.dev\nhttps://pub.dev';

@override
Widget build(BuildContext context) {
  return Scaffold(
    body: Center(
      child: LinkText(
        _text,
        textAlign: TextAlign.center,
        // You can optionally handle link tap event by yourself
        // onLinkTap: (url) => ...
      ),
    ),
  );
}

Installation

Add to pubspec.yaml:

dependencies:
  link_text: ^0.2.0

For more info, check out example project.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].