I have the same problem. Any news about how to solve that?
I solved the issue by placing the Chips in a View with the following style:
<View style={{flexDirection: 'row', alignItems: 'center', justifyContent: 'flex-start'}}>...</View>
Which causes them to behave as expected, with automatic width to match its child content.
Most helpful comment
I solved the issue by placing the Chips in a View with the following style:
<View style={{flexDirection: 'row', alignItems: 'center', justifyContent: 'flex-start'}}>...</View>Which causes them to behave as expected, with automatic width to match its child content.