Open
Description
Hi, I'm trying to use easy-toast and it works very well. But there is one instance I have of a long flatlist. If the list is rather long, I realized that the toast message appears but it is off the screen and you have to scroll in order to see it. Not sure if I am doing something wrong. Here is the code. I have used this on an Android device.
renderHeaderList() {
return (
<View style={{ flex: 1 }}>
<ScrollView
ref={(c) => { this.scroll = c; }}
>
<FlatList
ref={(ref) => { this.flatListRef = ref; }}
data={{ g_data }}
renderItem={this.renderItem}
keyExtractor={(item) => item.srNo}
/>
</ScrollView>
<Toast
ref="toast"
position={'top'}
style={{ backgroundColor: 'red' }}
/>
</View>
);
}
Metadata
Assignees
Labels
No labels