Closed
Description
I'm experiencing this on Android 7.1, react native 0.47.1, react-native-action-button 2.8.0:
Basically I have the following code:
<ActionButton
buttonColor="rgba(0,137,123,1)"
fixNativeFeedbackRadius={true}
size={56}
icon={<Icon name={this.props.icon} style={{ color: 'white', fontSize: 24 }}/>}>
{
this.props.actions.map((action, index) => {
return <ActionButton.Item
key={index}
buttonColor={Colors.teal500}
title={action.label}
onPress={action.onPress}
size={44}
>
<Icon name={action.icon} style={{ color: 'white', fontSize: 24 }} />
</ActionButton.Item>
})
}
</ActionButton>
Is there away to fix this behaviour?
Metadata
Metadata
Assignees
Labels
No labels