I'm using MapView.Callout to display a popup window when a user selects a pin on my map.
When I add a button in that popup window that has an onPress() method defined, this method is always fired when the state is populated. ie, on load - i get a bunch of alerts showing from the code below:
render() {
const {name, type} = this.props;
return (
<Card
containerStyle={styles.bubble}
title={name}
image={this.selectImage({type})}>
<Button
icon={{name: 'contact-phone'}}
backgroundColor='#80A33F'
buttonStyle={{borderRadius: 0, marginLeft: 0, marginRight: 0, marginBottom: 0}}
title='Book Now'
onPress={window.alert('button pressed')}
/>
</Card>
);
}
How does one avoid this happening? this happens on the load of the map itself, not when a user clicks on any given pin...
Try this: