{"id":29045299,"url":"https://github.com/majed04/react-native-emoji-menu","last_synced_at":"2025-06-26T16:11:01.363Z","repository":{"id":220770477,"uuid":"752561886","full_name":"Majed04/react-native-emoji-menu","owner":"Majed04","description":"Simple, customizable emojis picker for React Native 👌👌","archived":false,"fork":false,"pushed_at":"2025-06-22T08:14:50.000Z","size":1594,"stargazers_count":25,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-22T08:31:33.974Z","etag":null,"topics":["emoji-picker","emojis","react","react-native","reanimated3"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/react-native-emoji-menu","language":"TypeScript","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/Majed04.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2024-02-04T07:48:46.000Z","updated_at":"2025-06-22T08:15:18.000Z","dependencies_parsed_at":null,"dependency_job_id":"ed7c2e50-e95b-4395-80cb-610a151e304d","html_url":"https://github.com/Majed04/react-native-emoji-menu","commit_stats":{"total_commits":7,"total_committers":2,"mean_commits":3.5,"dds":0.1428571428571429,"last_synced_commit":"3f035927e6bb453fac1e04c56df0cd1cd6c994fb"},"previous_names":["majiedo/react-native-emojis-picker","majed04/react-native-emojis-picker"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Majed04/react-native-emoji-menu","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Majed04%2Freact-native-emoji-menu","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Majed04%2Freact-native-emoji-menu/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Majed04%2Freact-native-emoji-menu/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Majed04%2Freact-native-emoji-menu/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Majed04","download_url":"https://codeload.github.com/Majed04/react-native-emoji-menu/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Majed04%2Freact-native-emoji-menu/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262099744,"owners_count":23258671,"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-picker","emojis","react","react-native","reanimated3"],"created_at":"2025-06-26T16:10:58.816Z","updated_at":"2025-06-26T16:11:01.349Z","avatar_url":"https://github.com/Majed04.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch2 align=\"center\"\u003e\nreact-native-emoji-menu\n\u003c/h2\u003e\n\u003cp align=\"center\" color=\"red\"\u003e\nIt's built with TypeScript and uses Reanimated 2 for smooth animations\n\u003c/p\u003e\n\n|          light theme          |          dark theme          |\n| :---------------------------: | :--------------------------: |\n| ![](./assets/light-theme.png) | ![](./assets/dark-theme.png) |\n\n### Installation\n\n```bash\nnpm install react-native-emoji-menu\n```\n\n### Dependencies\n\nThis library needs react-native-reanimated to be installed in your project before you can use it:\n\n```bash\nnpm install react-native-reanimated@3.6.2\n```\n\nAdd `react-native-reanimated/plugin` plugin to your `babel.config.js`.\n\n```ts\n  module.exports = {\n    presets: [\n      ... // don't add it here :)\n    ],\n    plugins: [\n      ...\n      'react-native-reanimated/plugin',\n    ],\n  };\n```\n\n### Usage\n\nwrap the whole app in `EmojiProvider`\n\n```ts\nimport { EmojiProvider } from \"react-native-emoji-menu\";\nexport default function App() {\n  return (\n    \u003cEmojiProvider\u003e\n      //rest your app\n    \u003c/EmojiProvider\u003e\n  );\n}\n```\n\nsimple emoji component\n\n```ts\nimport { Button, StyleSheet, Text, View } from \"react-native\";\nimport { useState } from \"react\";\nimport { EmojiModal } from \"react-native-emoji-menu\";\n\nexport default function EmojiComponent() {\n  const [showModal, setShowModal] = useState(false);\n  const [emoji, setEmoji] = useState(\"\");\n  return (\n    \u003cView style={styles.container}\u003e\n      \u003cText style={{ fontSize: 100 }}\u003e{emoji}\u003c/Text\u003e\n      \u003cButton\n        title=\"Show Emojis Modal 😁\"\n        onPress={() =\u003e {\n          setShowModal(true);\n        }}\n      /\u003e\n      {showModal \u0026\u0026 (\n        \u003cEmojiModal\n          onPressOutside={() =\u003e setShowModal(false)}\n          onEmojiSelected={(emoji) =\u003e {\n            setShowModal(false);\n            setEmoji(emoji);\n          }}\n        /\u003e\n      )}\n    \u003c/View\u003e\n  );\n}\n\nconst styles = StyleSheet.create({\n  container: {\n    flex: 1,\n    backgroundColor: \"#fff\",\n    alignItems: \"center\",\n    justifyContent: \"center\",\n  },\n});\n```\n\nnow import the component we just created into `App.tsx`\n\n```ts\nimport { EmojiProvider } from \"react-native-emoji-menu\";\nimport EmojiComponent from \"./components/emoji\";\nexport default function App() {\n  return (\n    \u003cEmojiProvider\u003e\n      \u003cEmojiComponent /\u003e\n    \u003c/EmojiProvider\u003e\n  );\n}\n```\n\n### `EmojiModal` Props\n\n|    Property     |             Type              |    Default     |                                                                                       description                                                                                        |\n| :-------------: | :---------------------------: | :------------: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |\n|  intensityBlur  |            number             |       20       |                                                                           the intensity of the backgroud blur                                                                            |\n|     columns     |            number             |       10       |                                                                                    number of columns                                                                                     |\n| onEmojiSelected |           function            |   undefined    |                                                             function fire when emoji selected and return the selected emoji                                                              |\n| onPressOutside  |           function            |   undefined    |                                                                   function fire when the user press outside the modal                                                                    |\n|    position     | \"top\" or \"bottom\" or \"center\" |    \"center\"    |                                                                                  position of the modal                                                                                   |\n| autoFocusSearch |            boolean            |     false      |                                                                              auto focus the search textbox                                                                               |\n|    darkMode     |            boolean            |     false      |                                                                                    theme of the modal                                                                                    |\n|   categories    |             Key[]             | All categories | only categories these are shown in the modal such as ( \"Smileys \u0026 Emotion\" \"Activities\" \"Animals \u0026 Nature\" \"Flags\" \"Food \u0026 Drink\" \"Objects\" \"People \u0026 Body\" \"Symbols\" \"Travel \u0026 Places\") |\n\n### Author\n\nMajed Al-Otaibi, majedbinobied@gmail.com\n\n### License\n\nreact-native-emoji-menu is available under the MIT license. See the LICENSE file for more info\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmajed04%2Freact-native-emoji-menu","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmajed04%2Freact-native-emoji-menu","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmajed04%2Freact-native-emoji-menu/lists"}