
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
react-native-emoji-popup
Advanced tools
Emoji Popup for React Native, using native primitives.
https://github.com/user-attachments/assets/a6f94dc5-6175-419c-a6e4-04ef48aaf913
npm i react-native-emoji-popup
The API is simple, just wrap your component with the EmojiPopup component and pass a callback to the onEmojiSelected prop.
import { EmojiPopup } from 'react-native-emoji-popup';
export default function EmojiExample() {
const [emoji, setEmoji] = useState('🫡');
return (
<View>
<TextInput value={emoji} />
<EmojiPopup onEmojiSelected={setEmoji}>
<Text style={styles.buttonText}>Open Emoji Picker</Text>
</EmojiPopup>
</View>
);
}
On Android, you can also pass a custom close button component to the closeButton prop.
import { EmojiPopup } from 'react-native-emoji-popup';
const CloseButton = ({ close }: { close: () => void }) => (
<Pressable onPress={close}>
<Text style={styles.buttonText}>Close ❌</Text>
</Pressable>
);
export default function EmojiExample() {
const [emoji, setEmoji] = useState('🫡');
return (
<View>
<TextInput value={emoji} />
<EmojiPopup
onEmojiSelected={setEmoji}
closeButton={CloseButton}
style={styles.buttonText}
>
<Text style={styles.buttonText}>Open Emoji Picker</Text>
</EmojiPopup>
</View>
);
}
| Prop | Type | Platform | Description | Default |
|---|---|---|---|---|
children | React.ReactNode | iOS, Android | The component that will trigger the emoji picker when pressed | - |
onEmojiSelected | (emoji: string) => void | iOS, Android | Callback function that receives the selected emoji as a parameter | - |
closeButton | (props: { close: () => void }) => React.ReactNode | Android | Custom close button component that receives a close function | Default close button |
contentContainerStyle | StyleProp<ViewStyle> | Android | Style object for customizing the emoji picker container appearance | - |
style | StyleProp<ViewStyle> | iOS, Android | Style object for the trigger component container | - |
The emoji picker automatically adapts to the device's color scheme on both platforms. On Android, you can customize the color scheme by passing a contentContainerStyle prop to the EmojiPopup component and specifying the backgroundColor property.
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
Made with create-react-native-library
FAQs
Emoji Popup for React Native
We found that react-native-emoji-popup demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.