{"id":19270389,"url":"https://github.com/thewidlarzgroup/rn-emoji-keyboard","last_synced_at":"2025-07-04T07:06:28.417Z","repository":{"id":36963530,"uuid":"384532109","full_name":"TheWidlarzGroup/rn-emoji-keyboard","owner":"TheWidlarzGroup","description":"Super performant, lightweight, fully customizable emoji picker 🚀 ","archived":false,"fork":false,"pushed_at":"2024-05-09T15:51:57.000Z","size":6962,"stargazers_count":372,"open_issues_count":35,"forks_count":69,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-06-30T08:43:50.866Z","etag":null,"topics":["android","emoji","emoji-keyboard","emoji-picker","hacktoberfest","hacktoberfest2021","hacktoberfest2022","ios","react-native","typescript"],"latest_commit_sha":null,"homepage":"https://thewidlarzgroup.github.io/rn-emoji-keyboard/","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/TheWidlarzGroup.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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":"2021-07-09T19:24:24.000Z","updated_at":"2025-06-18T09:30:22.000Z","dependencies_parsed_at":"2023-01-17T09:01:13.308Z","dependency_job_id":"0bb25f87-d7f3-4045-a152-e909d303857c","html_url":"https://github.com/TheWidlarzGroup/rn-emoji-keyboard","commit_stats":{"total_commits":146,"total_committers":23,"mean_commits":"6.3478260869565215","dds":0.3013698630136986,"last_synced_commit":"3789c49e333e2f811a104d364cf9c0fef76d44ff"},"previous_names":[],"tags_count":26,"template":false,"template_full_name":null,"purl":"pkg:github/TheWidlarzGroup/rn-emoji-keyboard","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheWidlarzGroup%2Frn-emoji-keyboard","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheWidlarzGroup%2Frn-emoji-keyboard/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheWidlarzGroup%2Frn-emoji-keyboard/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheWidlarzGroup%2Frn-emoji-keyboard/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TheWidlarzGroup","download_url":"https://codeload.github.com/TheWidlarzGroup/rn-emoji-keyboard/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheWidlarzGroup%2Frn-emoji-keyboard/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263464198,"owners_count":23470475,"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":["android","emoji","emoji-keyboard","emoji-picker","hacktoberfest","hacktoberfest2021","hacktoberfest2022","ios","react-native","typescript"],"created_at":"2024-11-09T20:24:37.465Z","updated_at":"2025-07-04T07:06:28.380Z","avatar_url":"https://github.com/TheWidlarzGroup.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n    \u003cimg alt=\"rn-emoji-keyboard\" src=\"./docs/assets/icon/rocket.png\" /\u003e\n\u003c/p\u003e\n\u003cp align=\"center\" \u003e\n  Lightweight, fully customizable emoji keyboard,\u003cbr /\u003e\n  written as a React Native component (without native elements).\u003cbr /\u003e\n  Designated to be user and developer friendly! 💖 \u003cbr/\u003e\n  \u003ca href=\"https://github.com/TheWidlarzGroup/rn-emoji-keyboard\"\u003ern-emoji-keyboard\u003c/a\u003e\n\u003c/p\u003e\n\n---\n\n![Build status - typescript compile](https://img.shields.io/github/actions/workflow/status/TheWidlarzGroup/rn-emoji-keyboard/tsc.yml?branch=master)\n![License badge](https://img.shields.io/npm/l/rn-emoji-keyboard)\n![Latest, released version](https://img.shields.io/github/v/release/TheWidlarzGroup/rn-emoji-keyboard)\n![Date of latest commit](https://img.shields.io/github/last-commit/TheWidlarzGroup/rn-emoji-keyboard)\n![Number of contributors](https://img.shields.io/github/contributors/TheWidlarzGroup/rn-emoji-keyboard)\n\n---\n\n## 🪄 Installation\n\n```sh\nyarn add rn-emoji-keyboard\n```\n\n## 📖 Documentation\n\nCheck the docs here [Click](https://thewidlarzgroup.github.io/rn-emoji-keyboard/)\n\n- [Getting Started](https://thewidlarzgroup.github.io/rn-emoji-keyboard/docs/documentation/start)\n- [Internationalization](https://thewidlarzgroup.github.io/rn-emoji-keyboard/docs/documentation/internationalization)\n- [Basic Usage](https://thewidlarzgroup.github.io/rn-emoji-keyboard/docs/documentation/Examples/basic)\n- [API Reference](https://thewidlarzgroup.github.io/rn-emoji-keyboard/docs/api/modal)\n- [Contributions](https://thewidlarzgroup.github.io/rn-emoji-keyboard/docs/contributions/translations)\n\n## ⚡️ Example\n\n![Preview](/example/assets/preview-small.gif)\n\n```js\nimport EmojiPicker from 'rn-emoji-keyboard'\n\nexport default function App() {\n  const [isOpen, setIsOpen] = React.useState\u003cboolean\u003e(false)\n\n  return \u003cEmojiPicker onEmojiSelected={handlePick} open={isOpen} onClose={() =\u003e setIsOpen(false)} /\u003e\n}\n```\n\n## ⚖️ License\n\n**[MIT](/LICENSE)**\n\n## 📝 Contribute\n\nIf you want to contribute read the [CONTRIBUTING.md](/CONTRIBUTING.md) guide.\n\n## 🏢 Built with ♥️ and ⌨️ at TheWidlarzGroup\n\nBuilt at TheWidlarzGroup - the group of React Native Developers and Designers who has built this project for you.\nIf you like it -\u003e give it a star!\n\nE-mail if you have any questions or just want to talk \u003chello@thewidlarzgroup.com\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthewidlarzgroup%2Frn-emoji-keyboard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthewidlarzgroup%2Frn-emoji-keyboard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthewidlarzgroup%2Frn-emoji-keyboard/lists"}