Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-native-emoji-selector

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-emoji-selector

A react native emoji selector

  • 0.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
9.2K
increased by15.05%
Maintainers
1
Weekly downloads
 
Created
Source

react-native-emoji-selector

Image preview

Installation

npm install --save react-native-emoji-selector
import EmojiSelector from 'react-native-emoji-selector'

Demo

Demo GIF

Usage

Basic usage

<EmojiSelector onEmojiSelected={emoji => console.log(emoji)} />

Setting a default category

If you'd like to define a different default category, you can import the Categories class. Setting a default category can also improve performance by loading a single section rather than all sections at once.

import EmojiSelector, { Categories } from "react-native-emoji-selector";

<EmojiSelector
  category={Categories.symbols}
  onEmojiSelected={emoji => console.log(emoji)}
/>;

The available categories are all, emotion, people, nature, food, activities, places, objects, symbols, and flags.

Props

PropTypeDefaultDescription
onEmojiSelectedfuncFunction called when a user selects an Emoji
themestring"007AFF"Theme color used for loaders and active tab indicator
showTabsbooltrueToggle the tabs on or off
showSearchBarbooltrueToggle the searchbar on or off
showHistoryboolfalseToggle the history tab on or off
showSectionTitlesbooltrueToggle the section title elements
categoryenum"all"Set the default category. Use the Categories class
columnsnumber6Number of columns accross
placeholderstring"Search..."A string placeholder when there is no text in text input
shouldIncludefuncFunction called to check for emoji inclusion

Contributors

Special thanks to everyone who has contributed to this project!

Victor K Varghese Kubo Mateo Silguero Anastasiia Kravchenko Sindre Lucas Feijo

Keywords

FAQs

Package last updated on 04 Dec 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc