{"id":21893585,"url":"https://github.com/xhmm/react-native-mcemoji-picker","last_synced_at":"2026-04-12T05:32:00.504Z","repository":{"id":198922921,"uuid":"701823728","full_name":"XHMM/react-native-mcemoji-picker","owner":"XHMM","description":"An iOS emoji-picker component for react-native","archived":false,"fork":false,"pushed_at":"2023-10-14T08:28:23.000Z","size":2057,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-13T04:39:17.394Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","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/XHMM.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":"2023-10-07T17:01:03.000Z","updated_at":"2024-06-30T05:23:30.000Z","dependencies_parsed_at":"2023-10-15T08:56:26.940Z","dependency_job_id":null,"html_url":"https://github.com/XHMM/react-native-mcemoji-picker","commit_stats":null,"previous_names":["xhmm/react-native-mcemoji-picker"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/XHMM/react-native-mcemoji-picker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/XHMM%2Freact-native-mcemoji-picker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/XHMM%2Freact-native-mcemoji-picker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/XHMM%2Freact-native-mcemoji-picker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/XHMM%2Freact-native-mcemoji-picker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/XHMM","download_url":"https://codeload.github.com/XHMM/react-native-mcemoji-picker/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/XHMM%2Freact-native-mcemoji-picker/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260896401,"owners_count":23079011,"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":[],"created_at":"2024-11-28T13:15:02.351Z","updated_at":"2025-12-30T22:28:46.017Z","avatar_url":"https://github.com/XHMM.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# react-native-mcemoji-picker\n![npm](https://img.shields.io/npm/v/react-native-mcemoji-picker)\n\nAn emoji-picker component for iOS, it's a wrapper of the native-implemented component [MCEmojiPicker](https://github.com/izyumkin/MCEmojiPicker). Compared with js-implemented pickers, this component has **less memory usage and more performant**.\n\n## Installation\n\n```sh\nnpm install react-native-mcemoji-picker\nnpx pod-install\n```\n\n## Usage\n\n```js\nimport * as React from 'react';\nimport { useRef, useState } from 'react';\nimport { StyleSheet, View, Button, Text } from 'react-native';\nimport { EmojiPicker } from 'react-native-mcemoji-picker';\n\nexport default function App() {\n  const anchorRef = useRef\u003cany\u003e();\n  const [emoji, setEmoji] = useState('none');\n  const [isPickerShow, setIsPickerShow] = useState(false);\n\n  return (\n    \u003cView style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}\u003e\n      \u003cText\u003eSelected emoji: {emoji}\u003c/Text\u003e\n      \u003cButton\n        title=\"Select\"\n        ref={anchorRef}\n        onPress={() =\u003e {\n          setIsPickerShow(true);\n        }}\n      /\u003e\n\n      \u003cEmojiPicker\n        anchorRef={anchorRef}\n        show={isPickerShow}\n        onSelect={(emoji) =\u003e {\n          setEmoji(emoji);\n        }}\n        onClose={() =\u003e {\n          setIsPickerShow(false);\n        }}\n      /\u003e\n\n    \u003c/View\u003e\n  );\n}\n```\n\n## Preview\n\u003cimg src=\"./preview.png\" width=\"300\"\u003e\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxhmm%2Freact-native-mcemoji-picker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxhmm%2Freact-native-mcemoji-picker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxhmm%2Freact-native-mcemoji-picker/lists"}