Not working with scrollview
Ekluv opened this issue · 3 comments
Ekluv commented
brkrtp commented
+1
davebra commented
I resolved this with a View as root, eg:
<View style={{flex:1}}>
<ScrollView>
...
</ScrollView>
<Toast ref="toast" />
</View>
zhuxianqin commented
I resolved this with a View as root, eg:
<View style={{flex:1}}> <ScrollView> ... </ScrollView> <Toast ref="toast" /> </View>
Thanks