react-native-collapsible
react-native-collapsible copied to clipboard
Animated collapsible component for React Native, good for accordions, toggles etc
It seems that certain packages provided by the react-native-community has started to adopt using reanimated as opposed to r-n-animated. Just wanna know if it will be implemented in the future.
I'm trying to setup an accordion that has a nested array of sections, like this ``` [ { id: 1, title: "First", content: [ { id: 1, section: 1, name:...
Original bug described in #175; I'm opening this one because I intend to submit a PR that fixes it without causing the issue described in #197. Copying content of original...
I have a pretty simple layout with a Collapsible that contains a View and a ListView. Scrolling does not work on a long list and snaps back to the original...
Would it be possible to add similar methods to FlatList to enable infinite scrolling support? E.g., onEndReached Thanks!
Im using a `Modal` to show a `FlatList` with `collapsible` rows. Somehow I'm not able to scroll through the list when dragging the collapsed `Collapsible`, dragging outside the collapsible works...
@iRoachie brother, how are you? 1. fixed `ViewPropTypes` for RNWeb 2. sources moved to `src`. Now builded version in root folder (added to gitignore but not to npmignore) closes #341...
This is what I know so far: Until this commit https://github.com/oblador/react-native-collapsible/commit/b882388c90227b5dc13f7fa301ec9d5c9ad9a4ef we've been using `componentWillReceiveProps` but now we use: `componentDidUpdate ` Here's the series of events that took place when...
## Problem bug: Everything looks good, but when you click on the header it takes a few seconds to expand the content. I think the problem is because there is...
I am using nested Collapsibles in a structure like this: FlatList ---> Collapsible in each item ---> FlatList in each Collapsible ---> Collapsible in each item. On IOS this is...