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

discontinued

HashTagText will detect all hastags in string.

example/main.dart

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

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        body: SafeArea(
          child: Container(
            child: Center(child: HashTagText(text: "I will found and #highlight all #tag and #make it #clickable", onHashTagClick: (tag){
              print("You clicked on $tag");
            },),),
          ),
        ),
      ),
    );
  }
}
3
likes
20
pub points
0%
popularity

Publisher

unverified uploader

HashTagText will detect all hastags in string.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on hashtagtext