remove_emoji 0.0.6 copy "remove_emoji: ^0.0.6" to clipboard
remove_emoji: ^0.0.6 copied to clipboard

outdated

Dart and flutter package accurately replace/remove emojis in text

Remove Emoji 😒

Dart package accurately replace/remove emojis in text

Usage πŸ€“ #

A simple usage example:

import 'package:remove_emoji/remove_emoji.dart';

void main() {
  var word = '🀣h😌eπŸ™„lπŸ˜ͺlπŸ˜“oπŸ˜³πŸ€”πŸ‘¨β€πŸ¦°πŸ€ΆπŸΏ πŸ§β€β™‚οΈπŸπŸ₯˜πŸŒ―🍦πŸ₯‚πŸ₯‚πŸŽ‚πŸ°πŸ§πŸ¨πŸ§πŸ˜wπŸ€·β€β™‚οΈo😎rπŸ€ͺlπŸ€¦β€β™‚οΈdπŸΈπŸ€‘πŸ˜†πŸ˜–πŸŽ‰πŸΎπŸ€ŸπŸ€©πŸ˜’πŸ­πŸ˜‘πŸ˜πŸ“§πŸ˜„πŸ˜”πŸ˜‡πŸ§πŸ˜ˆπŸ™πŸ€“πŸ™‚πŸ₯±';
  var remove = RemoveEmoji();

  //  with trim
  print(remove.removemoji(word));

  // without trim
  print(remove.removemoji(word,'', false));

  // or use extension πŸ€“

  // with trim
  print(word.removemoji);
 // without trim
 print(word.removemojiNoTrim);
}

output

hello world
hello world

Contribution πŸ€“ #

Happy 😍 to recieve or provide contributions related to this package.

Features and bugs πŸ› #

Please file feature requests and bugs at the issue tracker.

Contact πŸ“§ #

if you have any questions , feel free to wite us on

35
likes
0
pub points
93%
popularity

Publisher

verified publishern4ze3m.site

Dart and flutter package accurately replace/remove emojis in text

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on remove_emoji