react-native-embed-instagram
react-native-embed-instagram copied to clipboard
can not set custom render caption
I try to create custom render caption, but not work. This is my code
<InstagramEmbed
id="CB4kA1igV-d"
style={{ width: '50%', height: 100 }}
showAvatar={true}
renderCaption={(caption) => {
console.log('Caption ', caption);
return (
<Text numberOfLines={1} style={{ width: '100%' }}>
{caption}
</Text>
);
}}
showCaption={true}
/>