emoji_selector 0.0.4 copy "emoji_selector: ^0.0.4" to clipboard
emoji_selector: ^0.0.4 copied to clipboard

An Emoji picker component for Flutter with the latest set of emojis. The current version supports Emoji version 13.

Emoji Selector #

Emoji Selector is an emoji picker component for Flutter.

Screenshot of emoji Selector

Getting Started #

Declare dependency in your pubspec.yaml

dependencies:
    emoji_selector: ^0.0.4

You can then easily embed the Emoji Selector Widget anywhere in your application:

EmojiSelector(
    onSelected: (emoji) {
        print('Selected emoji ${emoji.char}');
    },
),

You will receive a callback with an EmojiData object represented the emoji picked by the user.

class EmojiData {
  final String id;
  final String name;
  final String unified;
  final String char;
  final String category;
  final int skin;
}

When the emoji is qualified with a skin tone, both unified and char contains the qualifed values.

The skin parameter goes from 0 to 6, 0 representing no skin tone applied. 1 is then the lighter skin tone and 6 the darkest.

How to use as a keyboard #

You can use a modal sheet to simulate a keyboard.

return showModalBottomSheet(
    context: context,
    builder: (BuildContext subcontext) {
        return Container(
        height: 266,
        child: EmojiSelector(
            onSelected: (emoji) {
            Navigator.of(subcontext).pop(emoji);
            },
        ),
        );
    },
);
22
likes
0
pub points
82%
popularity

Publisher

unverified uploader

An Emoji picker component for Flutter with the latest set of emojis. The current version supports Emoji version 13.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on emoji_selector