{"id":4149,"url":"https://github.com/yonahforst/react-native-emoji-picker","last_synced_at":"2025-08-04T00:32:22.728Z","repository":{"id":57336765,"uuid":"61024732","full_name":"yonahforst/react-native-emoji-picker","owner":"yonahforst","description":"Simple emoji picker for react-native","archived":false,"fork":false,"pushed_at":"2018-11-09T14:49:15.000Z","size":2157,"stargazers_count":109,"open_issues_count":2,"forks_count":45,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-06-17T17:05:40.393Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","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/yonahforst.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}},"created_at":"2016-06-13T09:34:07.000Z","updated_at":"2024-08-27T11:26:13.000Z","dependencies_parsed_at":"2022-09-11T12:31:09.604Z","dependency_job_id":null,"html_url":"https://github.com/yonahforst/react-native-emoji-picker","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/yonahforst/react-native-emoji-picker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yonahforst%2Freact-native-emoji-picker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yonahforst%2Freact-native-emoji-picker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yonahforst%2Freact-native-emoji-picker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yonahforst%2Freact-native-emoji-picker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yonahforst","download_url":"https://codeload.github.com/yonahforst/react-native-emoji-picker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yonahforst%2Freact-native-emoji-picker/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268634063,"owners_count":24281895,"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","status":"online","status_checked_at":"2025-08-03T02:00:12.545Z","response_time":2577,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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-01-05T20:17:02.618Z","updated_at":"2025-08-04T00:32:22.327Z","avatar_url":"https://github.com/yonahforst.png","language":"JavaScript","funding_links":[],"categories":["Components","Others"],"sub_categories":["UI"],"readme":"## Emoji picker for react-native\nPowered by the awesome `emoji-datasource`\n\n![AnimatedExample](animated-example.gif)\n\n### Installation\n```bash\nnpm install react-native-emoji-picker\n```\n\n### EmojiPicker component\n```javascript\nconst EmojiPicker = require('react-native-emoji-picker');\n\nclass Main extends React.Component {\n  _emojiSelected(emoji) {\n    console.log(emoji)\n  }\n\n  render() {\n    return (\n      \u003cView style={styles.container}\u003e\n        \u003cEmojiPicker \n          style={styles.emojiPicker} \n          onEmojiSelected={this._emojiSelected}/\u003e\n      \u003c/View\u003e\n    );\n  }\n}\n\n```\n\n#### Component props\n- `onEmojiSelected` (Function) - Required. Called when the user taps on an emoji.\n- `style` (Object) - Optional. Standard view style for the enclosing component.\n- `clearButtonText` (String) - Optional. Alternate text for the clear button. Defaults to 'Clear'.\n- `hideClearButton` (Bool) - Optional. Hide the clear button. \n- `rows` (Number) - Optional. Number of rows used to show all emojis. Defaults to 7.\n\n### EmojiOverlay component\nOptional overlay which wraps the picker in a modal-like component \n\n```javascript\nconst { EmojiOverlay } = require('react-native-emoji-picker');\n\nclass Main extends React.Component {\n  state = {\n    showPicker: false,\n  }\n\n  _emojiSelected(emoji) {\n    this.setState({showPicker: false})\n    console.log(emoji)\n  }\n\n  render() {\n    return (\n      \u003cView style={styles.container}\u003e\n\n        \u003cTouchableHighlight\n          onPress={() =\u003e this.setState({showPicker: true})}\u003e\n          \u003cText\u003e Show picker \u003c/Text\u003e\n        \u003c/TouchableHighlight\u003e\n\n        \u003cEmojiOverlay \n          style={styles.emojiPicker} \n          visible={this.state.showPicker}\n          onTapOutside={() =\u003e this.setState({showPicker: false})}\n          horizontal={true}\n          onEmojiSelected={this._emojiSelected}/\u003e\n\n      \u003c/View\u003e\n    );\n  }\n}\n\n```\n\n#### Component props\n- (...all EmojiPicker props)\n- `visible` (Bool) - Required. Is the overlay visible\n- `onTapOutside` (Function) - Required. Callback for when user taps outside the EmojiPicker area. Should set `visible` to `false`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyonahforst%2Freact-native-emoji-picker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyonahforst%2Freact-native-emoji-picker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyonahforst%2Freact-native-emoji-picker/lists"}