I am Trying to Use Read More text on Android and IOS Devices. Read More text is working fine in the IOS and while Android Device, it is no showing intermittently on the screens. may I know the reason Why? am I missing something?\
I am attaching the ref code.
// Read More Handlers
const renderTruncatedFooter = (handlePress: any) => {
return (
Read more
);
};
const renderRevealedFooter = (handlePress: any) => {
return (
<Text style={subscriptionStyles.showLess} onPress={handlePress}>
Show less
</Text>
);
};
// JSX
{subscriptionData.commitmentText}
