Open
Description
The TouchableOpacity's onPress call is not called when the component is rendered in the sidebar.
This is the component definition:
const IconButton = ({
onPress,
name,
family,
size,
disabled,
color,
style
}) => (
<TouchableOpacity style={style} onPress={onPress} disabled={disabled}>
<Icon
name={name}
family={family}
size={size}
color={disabled ? (color ? color : theme.colors.disabled) : color}
/>
</TouchableOpacity>
)
Metadata
Assignees
Labels
No labels