All Projects → JeffG05 → emoji_picker

JeffG05 / emoji_picker

Licence: BSD-2-Clause License
A Flutter package that provides an Emoji Keyboard widget

Programming Languages

dart
5743 projects
java
68154 projects - #9 most used programming language
objective c
16641 projects - #2 most used programming language

Projects that are alternatives of or similar to emoji picker

rn-emoji-keyboard
Super performant, lightweight, fully customizable emoji picker 🚀
Stars: ✭ 228 (+178.05%)
Mutual labels:  emoji, emoji-keyboard
ios-emojikeyboard
Emoji Keyboard for iOS (support sticker as well)
Stars: ✭ 19 (-76.83%)
Mutual labels:  emoji, emoji-keyboard
EasyEmoji
Help developers to quickly realize the expression of the keyboard
Stars: ✭ 24 (-70.73%)
Mutual labels:  emoji, emoji-keyboard
EmojiKeyBoard
自定义表情键盘(支持系统表情, 图片表情),仅供参考学习~
Stars: ✭ 36 (-56.1%)
Mutual labels:  emoji, emoji-keyboard
gitbucket-emoji-plugin
Provides Emoji support for GitBucket
Stars: ✭ 19 (-76.83%)
Mutual labels:  emoji
iiitdmj-gpa
GPA Calculator + Quiz Bot for IIITDM Jabalpur
Stars: ✭ 16 (-80.49%)
Mutual labels:  emoji
Emojis-For-Godot
Addon that allows to use Emojis in your Godot project
Stars: ✭ 26 (-68.29%)
Mutual labels:  emoji
water drop nav bar
flutter navigation bar with water drop effect.
Stars: ✭ 29 (-64.63%)
Mutual labels:  flutter-package
bitsnpicas
Bits'N'Picas - Bitmap & Emoji Font Creation & Conversion Tools
Stars: ✭ 171 (+108.54%)
Mutual labels:  emoji
rich
Rich is a Python library for rich text and beautiful formatting in the terminal.
Stars: ✭ 36,988 (+45007.32%)
Mutual labels:  emoji
eva icons flutter
Flutter package for Eva Icons. Eva Icons is a pack of more than 480 beautifully crafted Open Source icons for common actions and items. https://pub.dartlang.org/packages/eva_icons_flutter
Stars: ✭ 80 (-2.44%)
Mutual labels:  flutter-package
gatsby-remark-emojis
🚀 Processes emoji in markdown and inlines <img> tags with the corresponding base64 representation of the image.
Stars: ✭ 28 (-65.85%)
Mutual labels:  emoji
wink-sentiment
Accurate and fast sentiment scoring of phrases with #hashtags, emoticons :) & emojis 🎉
Stars: ✭ 51 (-37.8%)
Mutual labels:  emoji
gitmoji-plugin
Choose the right emoji emoticon for git commit, make git log commit more interesting.
Stars: ✭ 110 (+34.15%)
Mutual labels:  emoji
sliding clipped nav bar
Bottom navigation bar with sliding clip effect.
Stars: ✭ 46 (-43.9%)
Mutual labels:  flutter-package
morphoji
PHP emoji converter
Stars: ✭ 13 (-84.15%)
Mutual labels:  emoji
FaceEmotionClassifier
人脸识别与卡通化
Stars: ✭ 102 (+24.39%)
Mutual labels:  emoji
glider
Server-side rendering for mobile apps, powered by Flutter
Stars: ✭ 20 (-75.61%)
Mutual labels:  flutter-package
flutter material showcase
Material Design components showcase for Flutter apps. Use to check ThemeData with most Material widgets.
Stars: ✭ 22 (-73.17%)
Mutual labels:  flutter-package
country-code-to-flag-emoji
A function that returns a flag emoji given IETF language tag.
Stars: ✭ 46 (-43.9%)
Mutual labels:  emoji

This project is no longer being actively maintained. Feel free to fork the repository and continue development.

Flutter Emoji Keyboard

pub package

A Flutter package that provides an Emoji Keyboard widget.

Key Features

  • View and select 390 emojis
  • 8 categories
  • Optionally add keywords to recommend emojis
  • Material Design and Cupertino mode
  • Emojis that cannot be displayed are filtered out (Android Only)

Usage

To use this plugin, add emoji_picker as dependency in your pubspec.yaml file.

Sample Usage

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

void main() => runApp(MainApp());

class MainApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: "Flutter Emoji Picker Example",
      home: Scaffold(
        appBar: AppBar(
          title: Text("Flutter Emoji Picker Example"),
        ),
        body: MainPage(),
      ),
    );
  }
}

class MainPage extends StatefulWidget {
  @override
  MainPageState createState() => new MainPageState();
}

class MainPageState extends State<MainPage> {
  @override
  Widget build(BuildContext context) {
    return EmojiPicker(
      rows: 3,
      columns: 7,
      recommendKeywords: ["racing", "horse"],
      numRecommended: 10,
      onEmojiSelected: (emoji, category) {
        print(emoji);
      },
    );
  }
}

See the example directory for the complete sample app.

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].