Reputation: 1
When I implemented it, bubble and Time were split into left and right ends.
Actual source code
<View style={styles.incomingContainer}>
<Bubble
{...props}
containerStyle={{
right: {
justifyContent: "flex-end",
borderColor: "red",
borderWidth: 1,
},
}}
renderTime={() => null}
/>
{renderTime(props)}
</View>
I want to put Bubble and time next to each other without opening the margin as shown in the image.
Upvotes: 0
Views: 158