crazycodeboy/react-native-easy-toast

Not working with scrollview

Ekluv opened this issue · 3 comments

Ekluv commented

Position remains fixed when the content is scrolled.

image

image

+1

I resolved this with a View as root, eg:

<View style={{flex:1}}>
  <ScrollView>
  ...
  </ScrollView>
  <Toast ref="toast" />
</View>

I resolved this with a View as root, eg:

<View style={{flex:1}}>
  <ScrollView>
  ...
  </ScrollView>
  <Toast ref="toast" />
</View>

Thanks