The most complete chat UI for React Native
npm install react-native-gifted-chat
The most complete chat UI for React Native & Web
---
- đ¨ Fully Customizable - Override any component with your own implementation
- đ Composer Actions - Attach photos, files, or trigger custom actions
- âŠī¸ Reply to Messages - Swipe-to-reply with reply preview and message threading
- âŽī¸ Load Earlier Messages - Infinite scroll with pagination support
- đ Copy to Clipboard - Long-press messages to copy text
- đ Smart Link Parsing - Auto-detect URLs, emails, phone numbers, hashtags, mentions
- đ¤ Avatars - User initials or custom avatar images
- đ Localized Dates - Full i18n support via Day.js
- â¨ī¸ Keyboard Handling - Smart keyboard avoidance for all platforms
- đŦ System Messages - Display system notifications in chat
- ⥠Quick Replies - Bot-style quick reply buttons
- âī¸ Typing Indicator - Show when users are typing
- â
Message Status - Tick indicators for sent/delivered/read states
- âŦī¸ Scroll to Bottom - Quick navigation button
- đ Web Support - Works with react-native-web
- đą Expo Support - Easy integration with Expo projects
- đ TypeScript - Complete TypeScript definitions included
---
- Features
- Requirements
- Installation
- Usage
- Props Reference
- Data Structure
- Platform Notes
- Example App
- Troubleshooting
- Contributing
- Authors
- License
---
| Requirement | Version |
|-------------|---------|
| React Native | >= 0.70.0 |
| iOS | >= 13.4 |
| Android | API 21+ (Android 5.0) |
| Expo | SDK 50+ |
| TypeScript | >= 5.0 (optional) |
---
``bash`
npx expo install react-native-gifted-chat react-native-reanimated react-native-gesture-handler react-native-safe-area-context react-native-keyboard-controller
Step 1: Install the packages
Using yarn:
`bash`
yarn add react-native-gifted-chat react-native-reanimated react-native-gesture-handler react-native-safe-area-context react-native-keyboard-controller
Using npm:
`bash`
npm install --save react-native-gifted-chat react-native-reanimated react-native-gesture-handler react-native-safe-area-context react-native-keyboard-controller
Step 2: Install iOS pods
`bash`
npx pod-install
Step 3: Configure react-native-reanimated
Follow the react-native-reanimated installation guide to add the Babel plugin.
---
`jsx
import React, { useState, useCallback, useEffect } from 'react'
import { GiftedChat } from 'react-native-gifted-chat'
import { useHeaderHeight } from '@react-navigation/elements'
export function Example() {
const [messages, setMessages] = useState([])
// keyboardVerticalOffset = distance from screen top to GiftedChat container
// useHeaderHeight() returns status bar + navigation header height
const headerHeight = useHeaderHeight()
useEffect(() => {
setMessages([
{
_id: 1,
text: 'Hello developer',
createdAt: new Date(),
user: {
_id: 2,
name: 'John Doe',
avatar: 'https://placeimg.com/140/140/any',
},
},
])
}, [])
const onSend = useCallback((messages = []) => {
setMessages(previousMessages =>
GiftedChat.append(previousMessages, messages),
)
}, [])
return (
onSend={messages => onSend(messages)}
user={{
_id: 1,
}}
keyboardAvoidingViewProps={{ keyboardVerticalOffset: headerHeight }}
/>
)
}
`
> đĄ Tip: Check out more examples in the example directory including Slack-style messages, quick replies, and custom components.
---
Messages, system messages, and quick replies follow the structure defined in Models.ts.
Message Object Structure
`typescript
interface IMessage {
_id: string | number
text: string
createdAt: Date | number
user: User
image?: string
video?: string
audio?: string
system?: boolean
sent?: boolean
received?: boolean
pending?: boolean
quickReplies?: QuickReplies
}
interface User {
_id: string | number
name?: string
avatar?: string | number | (() => React.ReactNode)
}
`
---
- messages _(Array)_ - Messages to display
- user _(Object)_ - User sending the messages: { _id, name, avatar }onSend
- _(Function)_ - Callback when sending a messagemessageIdGenerator
- _(Function)_ - Generate an id for new messages. Defaults to a simple random string generator.locale
- _(String)_ - Locale to localize the dates. You need first to import the locale you need (ie. require('dayjs/locale/de') or import 'dayjs/locale/fr')colorScheme
- _('light' | 'dark')_ - Force color scheme (light/dark mode). When set to 'light' or 'dark', it overrides the system color scheme. When undefined, it uses the system color scheme. Default is undefined.
- messagesContainerRef _(FlatList ref)_ - Ref to the flatlist
- textInputRef _(TextInput ref)_ - Ref to the text input
- keyboardProviderProps _(Object)_ - Props to be passed to the KeyboardProvider for keyboard handling. Default values:
- statusBarTranslucent: true - Required on Android for correct keyboard height calculation when status bar is translucent (edge-to-edge mode)navigationBarTranslucent: true
- - Required on Android for correct keyboard height calculation when navigation bar is translucent (edge-to-edge mode)keyboardAvoidingViewProps
- _(Object)_ - Props to be passed to the KeyboardAvoidingView. See keyboardVerticalOffset below for proper keyboard handling.isAlignedTop
- _(Boolean)_ Controls whether or not the message bubbles appear at the top of the chat (Default is false - bubbles align to bottom)isInverted
- _(Bool)_ - Reverses display order of messages; default is true
#### Understanding keyboardVerticalOffset
The keyboardVerticalOffset tells the KeyboardAvoidingView where its container starts relative to the top of the screen. This is essential when GiftedChat is not positioned at the very top of the screen (e.g., when you have a navigation header).
Default value: insets.top (status bar height from useSafeAreaInsets()). This works correctly only when GiftedChat fills the entire screen without a navigation header. If you have a navigation header, you need to pass the correct offset via keyboardAvoidingViewProps.
What the value means: The offset equals the distance (in points) from the top of the screen to the top of your GiftedChat container. This typically includes:
- Status bar height
- Navigation header height (on iOS, useHeaderHeight() already includes status bar)
How to use:
`jsx
import { useHeaderHeight } from '@react-navigation/elements'
function ChatScreen() {
// useHeaderHeight() returns status bar + navigation header height on iOS
const headerHeight = useHeaderHeight()
return (
// ... other props
/>
)
}
`
> Note: useHeaderHeight() requires your chat component to be rendered inside a proper navigation screen (not conditional rendering). If it returns 0, ensure your chat screen is a real navigation screen with a visible header.
Why this matters: Without the correct offset, the keyboard may overlap the input field or leave extra space. The KeyboardAvoidingView uses this value to calculate how much to shift the content when the keyboard appears.
- text _(String)_ - Input text; default is undefined, but if specified, it will override GiftedChat's internal state. Useful for managing text state outside of GiftedChat (e.g. with Redux). Don't forget to implement textInputProps.onChangeText to update the text state.initialText
- _(String)_ - Initial text to display in the input fieldisSendButtonAlwaysVisible
- _(Bool)_ - Always show send button in input text composer; default false, show only when text input is not emptyisTextOptional
- _(Bool)_ - Allow sending messages without text (useful for media-only messages); default false. Use with isSendButtonAlwaysVisible for media attachments.minComposerHeight
- _(Object)_ - Custom min-height of the composer.maxComposerHeight
- _(Object)_ - Custom max height of the composer.minInputToolbarHeight
- _(Integer)_ - Minimum height of the input toolbar; default is 44renderInputToolbar
- _(Component | Function)_ - Custom message composer containerrenderComposer
- _(Component | Function)_ - Custom text input message composerrenderSend
- _(Component | Function)_ - Custom send button; you can pass children to the original Send component quite easily, for example, to use a custom icon (example)renderActions
- _(Component | Function)_ - Custom action button on the left of the message composerrenderAccessory
- _(Component | Function)_ - Custom second line of actions below the message composertextInputProps
- _(Object)_ - props to be passed to the .
- onPressActionButton _(Function)_ - Callback when the Action button is pressed (if set, the default actionSheet will not be used)actionSheet
- _(Function)_ - Custom action sheet interface for showing action optionsactions
- _(Array)_ - Custom action options for the input toolbar action button; array of objects with title (string) and action (function) propertiesactionSheetOptionTintColor
- _(String)_ - Tint color for action sheet options
- messagesContainerStyle _(Object)_ - Custom style for the messages container
- renderMessage _(Component | Function)_ - Custom message container
- renderLoading _(Component | Function)_ - Render a loading view when initializing
- renderChatEmpty _(Component | Function)_ - Custom component to render in the ListView when messages are empty
- renderChatFooter _(Component | Function)_ - Custom component to render below the MessagesContainer (separate from the ListView)
- listProps _(Object)_ - Extra props to be passed to the messages for keeping scroll position when new messages arrive (useful for AI chatbots).
- renderBubble _(Component | Function(props: BubbleProps))_ - Custom message bubble. Receives BubbleProps as parameter.renderMessageText
- _(Component | Function)_ - Custom message textrenderMessageImage
- _(Component | Function)_ - Custom message imagerenderMessageVideo
- _(Component | Function)_ - Custom message videorenderMessageAudio
- _(Component | Function)_ - Custom message audiorenderCustomView
- _(Component | Function)_ - Custom view inside the bubbleisCustomViewBottom
- _(Bool)_ - Determine whether renderCustomView is displayed before or after the text, image and video views; default is falseonPressMessage
- _(Function(context, message))_ - Callback when a message bubble is pressedonLongPressMessage
- _(Function(context, message))_ - Callback when a message bubble is long-pressed; you can use this to show action sheets (e.g., copy, delete, reply)imageProps
- _(Object)_ - Extra props to be passed to the component created by the default renderMessageImageimageStyle
- _(Object)_ - Custom style for message imagesvideoProps
- _(Object)_ - Extra props to be passed to the video component created by the required renderMessageVideomessageTextProps
- _(Object)_ - Extra props to be passed to the MessageText component. Useful for customizing link parsing behavior, text styles, and matchers. Supports the following props:matchers
- - Custom matchers for linking message content (like URLs, phone numbers, hashtags, mentions)linkStyle
- - Custom style for linksemail
- - Enable/disable email parsing (default: true)phone
- - Enable/disable phone number parsing (default: true)url
- - Enable/disable URL parsing (default: true)hashtag
- - Enable/disable hashtag parsing (default: false)mention
- - Enable/disable mention parsing (default: false)hashtagUrl
- - Base URL for hashtags (e.g., 'https://x.com/hashtag')mentionUrl
- - Base URL for mentions (e.g., 'https://x.com')stripPrefix
- - Strip 'http://' or 'https://' from URL display (default: false)TextComponent
- - Custom Text component to use (e.g., from react-native-gesture-handler)
Example:
`tsx
phone: false, // Disable default phone number linking
matchers: [
{
type: 'phone',
pattern: /\+?[1-9][0-9\-\(\) ]{7,}[0-9]/g,
getLinkUrl: (replacerArgs: ReplacerArgs): string => {
return replacerArgs[0].replace(/[\-\(\) ]/g, '')
},
getLinkText: (replacerArgs: ReplacerArgs): string => {
return replacerArgs[0]
},
style: styles.linkStyle,
onPress: (match: CustomMatch) => {
const url = match.getAnchorHref()
const options: {
title: string
action?: () => void
}[] = [
{ title: 'Copy', action: () => setStringAsync(url) },
{ title: 'Call', action: () => Linking.openURL(tel:${url}) },sms:${url}
{ title: 'Send SMS', action: () => Linking.openURL() },
{ title: 'Cancel' },
]
showActionSheetWithOptions({
options: options.map(o => o.title),
cancelButtonIndex: options.length - 1,
}, (buttonIndex?: number) => {
if (buttonIndex === undefined)
return
const option = options[buttonIndex]
option.action?.()
})
},
},
],
linkStyle: { left: { color: 'blue' }, right: { color: 'lightblue' } },
}}
/>
`
See full example in LinksExample
- renderAvatar _(Component | Function)_ - Custom message avatar; set to null to not render any avatar for the messageisUserAvatarVisible
- _(Bool)_ - Whether to render an avatar for the current user; default is false, only show avatars for other usersisAvatarVisibleForEveryMessage
- _(Bool)_ - When false, avatars will only be displayed when a consecutive message is from the same user on the same day; default is falseonPressAvatar
- _(Function(user))_ - Callback when a message avatar is tappedonLongPressAvatar
- _(Function(user))_ - Callback when a message avatar is long-pressedisAvatarOnTop
- _(Bool)_ - Render the message avatar at the top of consecutive messages, rather than the bottom; default is false
- isUsernameVisible _(Bool)_ - Indicate whether to show the user's username inside the message bubble; default is falserenderUsername
- _(Component | Function)_ - Custom Username container
- timeFormat _(String)_ - Format to use for rendering times; default is 'LT' (see Day.js Format)dateFormat
- _(String)_ - Format to use for rendering dates; default is 'D MMMM' (see Day.js Format)dateFormatCalendar
- _(Object)_ - Format to use for rendering relative times; default is { sameDay: '[Today]' } (see Day.js Calendar)renderDay
- _(Component | Function)_ - Custom day above a messagedayProps
- _(Object)_ - Props to pass to the Day component:containerStyle
- - Custom style for the day containerwrapperStyle
- - Custom style for the day wrappertextProps
- - Props to pass to the Text component (e.g., style, allowFontScaling, numberOfLines)renderTime
- _(Component | Function)_ - Custom time inside a messagetimeTextStyle
- _(Object)_ - Custom text style for time inside messages (supports left/right styles)isDayAnimationEnabled
- _(Bool)_ - Enable animated day label that appears on scroll; default is true
- renderSystemMessage _(Component | Function)_ - Custom system message
- loadEarlierMessagesProps _(Object)_ - Props to pass to the LoadEarlierMessages component. The button is only visible when isAvailable is true. Supports the following props:isAvailable
- - Controls button visibility (default: false)onPress
- - Callback when button is pressedisLoading
- - Display loading indicator (default: false)isInfiniteScrollEnabled
- - Enable infinite scroll up when reaching the top of messages container, automatically calls onPress (not yet supported for web)label
- - Override the default "Load earlier messages" textcontainerStyle
- - Custom style for the button containerwrapperStyle
- - Custom style for the button wrappertextStyle
- - Custom style for the button textactivityIndicatorStyle
- - Custom style for the loading indicatoractivityIndicatorColor
- - Color of the loading indicator (default: 'white')activityIndicatorSize
- - Size of the loading indicator (default: 'small')renderLoadEarlier
- _(Component | Function)_ - Custom "Load earlier messages" button
- isTyping _(Bool)_ - Typing Indicator state; default false. If you userenderFooter it will override this.renderTypingIndicator
- _(Component | Function)_ - Custom typing indicator componenttypingIndicatorStyle
- _(StyleProprenderFooter
- _(Component | Function)_ - Custom footer component on the ListView, e.g. 'User is typing...'; see CustomizedFeaturesExample.tsx for an example. Overrides default typing indicator that triggers when isTyping is true.
See Quick Replies example in messages.ts
- onQuickReply _(Function)_ - Callback when sending a quick reply (to backend server)
- renderQuickReplies _(Function)_ - Custom all quick reply view
- quickReplyStyle _(StyleProp
- quickReplyTextStyle _(StyleProp
- quickReplyContainerStyle _(StyleProp
- renderQuickReplySend _(Function)_ - Custom quick reply send view
Gifted Chat supports swipe-to-reply functionality out of the box. When enabled, users can swipe on a message to reply to it, displaying a reply preview in the input toolbar and the replied message above the new message bubble.
> Note: This feature uses ReanimatedSwipeable from react-native-gesture-handler and react-native-reanimated for smooth, performant animations.
#### Basic Usage
`tsx`
onSend={onSend}
user={{ _id: 1 }}
reply={{
swipe: {
isEnabled: true,
direction: 'left', // swipe left to reply
},
}}
/>
#### Reply Props (Grouped)
The reply prop accepts an object with the following structure:
`typescript
interface ReplyProps
// Swipe gesture configuration
swipe?: {
isEnabled?: boolean // Enable swipe-to-reply; default false
direction?: 'left' | 'right' // Swipe direction; default 'left'
onSwipe?: (message: TMessage) => void // Callback when swiped
renderAction?: ( // Custom swipe action component
progress: SharedValue
translation: SharedValue
position: 'left' | 'right'
) => React.ReactNode
actionContainerStyle?: StyleProp
}
// Reply preview styling (above input toolbar)
previewStyle?: {
containerStyle?: StyleProp
textStyle?: StyleProp
imageStyle?: StyleProp
}
// In-bubble reply styling
messageStyle?: {
containerStyle?: StyleProp
containerStyleLeft?: StyleProp
containerStyleRight?: StyleProp
textStyle?: StyleProp
textStyleLeft?: StyleProp
textStyleRight?: StyleProp
imageStyle?: StyleProp
}
// Callbacks and state
message?: ReplyMessage // Controlled reply state
onClear?: () => void // Called when reply cleared
onPress?: (message: TMessage) => void // Called when reply preview tapped
// Custom renderers
renderPreview?: (props: ReplyPreviewProps) => React.ReactNode
renderMessageReply?: (props: MessageReplyProps) => React.ReactNode
}
`
#### ReplyMessage Structure
When a message has a reply, it includes a replyMessage property:
`typescript`
interface ReplyMessage {
_id: string | number
text: string
user: User
image?: string
audio?: string
}
#### Advanced Example with External State
`tsx
const [replyMessage, setReplyMessage] = useState
onSend={messages => {
const newMessages = messages.map(msg => ({
...msg,
replyMessage: replyMessage || undefined,
}))
setMessages(prev => GiftedChat.append(prev, newMessages))
setReplyMessage(null)
}}
user={{ _id: 1 }}
reply={{
swipe: {
isEnabled: true,
direction: 'right',
onSwipe: setReplyMessage,
},
message: replyMessage,
onClear: () => setReplyMessage(null),
onPress: (msg) => scrollToMessage(msg._id),
}}
/>
`
#### Smooth Animations
The reply preview automatically animates when:
- Appearing: Smoothly expands from zero height with fade-in effect
- Disappearing: Smoothly collapses with fade-out effect
- Content changes: Smoothly transitions when replying to a different message
These animations use react-native-reanimated for 60fps performance.
- isScrollToBottomEnabled _(Bool)_ - Enables the scroll to bottom Component (Default is false)
- scrollToBottomComponent _(Function)_ - Custom Scroll To Bottom Component container
- scrollToBottomOffset _(Integer)_ - Custom Height Offset upon which to begin showing Scroll To Bottom Component (Default is 200)
- scrollToBottomStyle _(Object)_ - Custom style for Scroll To Bottom wrapper (position, bottom, right, etc.)
- scrollToBottomContentStyle _(Object)_ - Custom style for Scroll To Bottom content (size, background, shadow, etc.)
For AI chat interfaces where long responses arrive and you don't want to disrupt the user's reading position, use maintainVisibleContentPosition via listProps:
`tsx
// Basic usage - always maintain scroll position
maintainVisibleContentPosition: {
minIndexForVisible: 0,
},
}}
/>
// With auto-scroll threshold - auto-scroll if within 10 pixels of newest content
maintainVisibleContentPosition: {
minIndexForVisible: 0,
autoscrollToTopThreshold: 10,
},
}}
/>
// Conditionally enable based on scroll state (recommended for chatbots)
const [isScrolledUp, setIsScrolledUp] = useState(false)
onScroll: (event) => {
setIsScrolledUp(event.contentOffset.y > 50)
},
maintainVisibleContentPosition: isScrolledUp
? { minIndexForVisible: 0, autoscrollToTopThreshold: 10 }
: undefined,
}}
/>
`
---
Keyboard configuration
If you are using Create React Native App / Expo, no Android specific installation steps are required. Otherwise, we recommend modifying your project configuration:
Make sure you have android:windowSoftInputMode="adjustResize" in your AndroidManifest.xml:
`xml`
android:label="@string/app_name"
android:windowSoftInputMode="adjustResize"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize">
For Expo, you can append KeyboardAvoidingView after GiftedChat (Android only):
`jsx`
{Platform.OS === 'android' &&
With create-react-app
1. Install react-app-rewired: yarn add -D react-app-rewiredconfig-overrides.js
2. Create :
`js`
module.exports = function override(config, env) {
config.module.rules.push({
test: /\.js$/,
exclude: /node_modules/\\/,
use: {
loader: 'babel-loader',
options: {
babelrc: false,
configFile: false,
presets: [
['@babel/preset-env', { useBuiltIns: 'usage' }],
'@babel/preset-react',
],
plugins: ['@babel/plugin-proposal-class-properties'],
},
},
})
return config
}
> Examples:
> - xcarpentier/gifted-chat-web-demo
> - Gatsby example
---
Triggering layout events in tests
TEST_ID is exported as constants that can be used in your testing library of choice.
Gifted Chat uses onLayout to determine the height of the chat container. To trigger onLayout during your tests:
`typescript
const WIDTH = 200
const HEIGHT = 2000
const loadingWrapper = getByTestId(TEST_ID.LOADING_WRAPPER)
fireEvent(loadingWrapper, 'layout', {
nativeEvent: {
layout: {
width: WIDTH,
height: HEIGHT,
},
},
})
`
---
The repository includes a comprehensive example app demonstrating all features:
`bashClone and install
git clone https://github.com/FaridSafi/react-native-gifted-chat.git
cd react-native-gifted-chat/example
yarn install
The example app showcases:
- đŦ Basic chat functionality
- đ¨ Custom message bubbles and avatars
- âŠī¸ Reply to messages with swipe gesture
- ⥠Quick replies (bot-style)
- âī¸ Typing indicators
- đ Attachment actions
- đ Link parsing and custom matchers
- đ Web compatibility
---
â Troubleshooting
TextInput is hidden on Android
Make sure you have
android:windowSoftInputMode="adjustResize" in your AndroidManifest.xml. See Android configuration above.
How to set Bubble color for each user?
See this issue for examples.
How to customize InputToolbar styles?
See this issue for examples.
How to manually dismiss the keyboard?
See this issue for examples.
How to use renderLoading?
See this issue for examples.
---
đ¤ Have a Question?
1. Check this README first
2. Search existing issues
3. Ask on StackOverflow
4. Open a new issue if needed
---
đ¤ Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
1. Fork the repository
2. Create your feature branch (
git checkout -b feature/amazing-feature)
3. Install dependencies (yarn install)
4. Make your changes
5. Run tests (yarn test)
6. Run linting (yarn lint)
7. Build the library (yarn build)
8. Commit your changes (git commit -m 'Add amazing feature')
9. Push to the branch (git push origin feature/amazing-feature)
10. Open a Pull Request$3
`bash
Install dependencies
yarn installBuild the library
yarn buildRun tests
yarn testRun linting
yarn lintFull validation
yarn prepublishOnly
``---
Original Author: Farid Safi
Co-maintainer: Xavier Carpentier - Hire Xavier
Maintainer: Kesha Antonov
> Please note that this project is maintained in free time. If you find it helpful, please consider becoming a sponsor.
---
---
Built with â¤ī¸ by the React Native community