{"id":13725172,"url":"https://github.com/arronhunt/react-native-emoji-selector","last_synced_at":"2025-05-14T22:08:51.975Z","repository":{"id":27825946,"uuid":"115297114","full_name":"arronhunt/react-native-emoji-selector","owner":"arronhunt","description":"⚛️😎 Simple, customizable and theme-able Emoji selector for React Native","archived":false,"fork":false,"pushed_at":"2025-03-03T15:57:55.000Z","size":6388,"stargazers_count":305,"open_issues_count":26,"forks_count":112,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-05-09T10:53:33.576Z","etag":null,"topics":["emoji","emoji-keyboard","react","react-native"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/react-native-emoji-selector","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/arronhunt.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-12-25T01:44:50.000Z","updated_at":"2025-04-15T09:40:13.000Z","dependencies_parsed_at":"2025-03-25T13:00:25.364Z","dependency_job_id":"1434b781-f9e2-438e-aa3a-a5e68a3d34c5","html_url":"https://github.com/arronhunt/react-native-emoji-selector","commit_stats":{"total_commits":86,"total_committers":11,"mean_commits":7.818181818181818,"dds":0.2325581395348837,"last_synced_commit":"a5d5ab0a6efc099abb8882f0a3a18e92800062bd"},"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arronhunt%2Freact-native-emoji-selector","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arronhunt%2Freact-native-emoji-selector/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arronhunt%2Freact-native-emoji-selector/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arronhunt%2Freact-native-emoji-selector/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arronhunt","download_url":"https://codeload.github.com/arronhunt/react-native-emoji-selector/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254235700,"owners_count":22036964,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["emoji","emoji-keyboard","react","react-native"],"created_at":"2024-08-03T01:02:14.942Z","updated_at":"2025-05-14T22:08:46.951Z","avatar_url":"https://github.com/arronhunt.png","language":"JavaScript","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"readme":"# react-native-emoji-selector\n\n![Image preview](./assets/cover.png)\n\n## Installation\n\n```\nnpm install --save react-native-emoji-selector\n```\n\n```\nimport EmojiSelector from 'react-native-emoji-selector'\n```\n\n## Demo\n\n![Demo GIF](./assets/demo.gif)\n\n## Usage\n\n### Basic usage\n\n```jsx\n\u003cEmojiSelector onEmojiSelected={emoji =\u003e console.log(emoji)} /\u003e\n```\n\n### Setting a default category\n\nIf 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.\n\n```jsx\nimport EmojiSelector, { Categories } from \"react-native-emoji-selector\";\n\n\u003cEmojiSelector\n  category={Categories.symbols}\n  onEmojiSelected={emoji =\u003e console.log(emoji)}\n/\u003e;\n```\n\nThe available categories are `all`, `emotion`, `people`, `nature`, `food`, `activities`, `places`, `objects`, `symbols`, and `flags`.\n\n## Props\n\n| Prop              | Type     | Default       | Description                                              |\n| ----------------- | -------- | ------------- | -------------------------------------------------------- |\n| onEmojiSelected   | _func_   |               | Function called when a user selects an Emoji             |\n| theme             | _string_ | `\"007AFF\"`    | Theme color used for loaders and active tab indicator    |\n| showTabs          | _bool_   | `true`        | Toggle the tabs on or off                                |\n| showSearchBar     | _bool_   | `true`        | Toggle the searchbar on or off                           |\n| showHistory       | _bool_   | `false`       | Toggle the history tab on or off                         |\n| showSectionTitles | _bool_   | `true`        | Toggle the section title elements                        |\n| category          | _enum_   | `\"all\"`       | Set the default category. Use the `Categories` class     |\n| columns           | _number_ | `6`           | Number of columns accross                                |\n| placeholder       | _string_ | `\"Search...\"` | A string placeholder when there is no text in text input |\n| shouldInclude     | _func_   |               | Function called to check for emoji inclusion             |\n\n## Contributors\n\nSpecial thanks to everyone who has contributed to this project!\n\n[![Victor K Varghese](https://avatars3.githubusercontent.com/u/15869386?s=80\u0026v=4)](https://github.com/victorkvarghese)\n[![Kubo](https://avatars3.githubusercontent.com/u/22464192?s=80\u0026v=4)](https://github.com/ma96o)\n[![Mateo Silguero](https://avatars3.githubusercontent.com/u/25598400?s=80\u0026v=4)](https://github.com/mateosilguero)\n[![Anastasiia Kravchenko](https://avatars3.githubusercontent.com/u/4223266?s=80\u0026v=4)](https://github.com/St1ma)\n[![Sindre](https://avatars3.githubusercontent.com/u/4065840?s=80\u0026v=4)](https://github.com/sseppola)\n[![Lucas Feijo](https://avatars3.githubusercontent.com/u/4157166?s=80\u0026v=4)](https://github.com/lucasfeijo)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farronhunt%2Freact-native-emoji-selector","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farronhunt%2Freact-native-emoji-selector","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farronhunt%2Freact-native-emoji-selector/lists"}