Releases: cooperka/react-native-immutable-list-view
Releases · cooperka/react-native-immutable-list-view
v0.6.2
Changed
- Significantly improved the example app
- With buttons for default/loading/error states
Fixed
- Automatically update the list data to make sure
EmptyListView
always re-renders if theemptyText
or other related props change- Previously if you changed
emptyText
twice in a row, the second change wouldn't be reflected because RN'sListView
didn't refresh itself
- Previously if you changed
- Fixed an error when rendering
EmptyListView
with section headers in the last release
v0.6.1
Added
- Added a
renderEmptyInList
prop for easier EmptyLists
v0.6.0
v0.5.2
v0.5.1
Fixed
- Fixed
renderEmpty
for Maps with empty sections (#27) - Fixed
Iterable.length
warnings when rendering a list with 0 items (#26) - Fixed installing the example app using
yarn install
. Yarn for some reason copies innode_modules
when installing locally, which caused all sorts of issues running unit tests and the example app.
Changed
- Cleaned up the README a bit
v0.5.0
Added
- Added getters for
ListView
andVirtualizedList
refs (#24)
Changed
- (BREAKING) Started using the actual
VirtualizedList
included withreact-native
, rather than the downloaded one - (BREAKING) Exported
ImmutableVirtualizedList
directly now that it's stable- New format is explained in the README
v0.4.5
v0.4.4
Changed
- Default to
removeClippedSubviews={false}
for ListView props- To work around long-standing React Native bug
- You can always pass in your own props to override this if you prefer
Fixed
- Added the new
FillRateHelper
component to thedownload-flatlist
script