I'm trying to achieve a feature similar to Tik-Tok's Comments Feature, press a button to open up a modal containing scrollview/flatlist, and we can drag the modal to close itself.
My Goal:
I did find anything about drag-to-close in React-Native Modal reference, please help me!
Code I have now (very basic):
<Modal
animationType='slide'
visible={isOpen}
transparent
>
<View style={{ height: 100, position: 'absolute', bottom: 0 }}>
<FlatList .../>
</View>
</Modal>