react-native-easy-toast
react-native-easy-toast copied to clipboard
Not seeing any toast.
return (
<KeyboardAvoidingView
style={styles.wrapper}
enabled
keyboardVerticalOffset={100}>
<ScrollView contentContainerStyle={styles.container}>
<Toast ref="toast" />
<BigButton
buttonText="tap here!"
onPress={this.showmytoast}
/>
</ScrollView>
</KeyboardAvoidingView>
)
}
showmytoast = () => {
this.refs.toast.show("Hello world", 500)
@quantumpotato hi. Possibly, your toast appeared behind the keyboard. I don't know how to solve this issue. I just face this issue and wonder how to fix it.
you can hide keyboard before making the toast appear.Maybe it can work
you can hide keyboard before making the toast appear.Maybe it can work
Or you can set the position of Toast to top. e.g. position: 'top'