Skip to main content

Add an trailing accessory

Rn chatty

Usage

import React, { useState } from 'react';
import { Chatty } from 'react-native-chatty';

export default function MyReactPage() {

return (
<Chatty
{...props}
bubbleProps={{
trailingAccessory: <Icon name="heart" size={15} />
}}
/>
);
}