Releases: cooperka/react-native-immutable-list-view
Releases · cooperka/react-native-immutable-list-view
v2.0.0
Changes
-
Removed
ImmutableListView
from the main exports to prevent "ListView is deprecated" warnings for people who have already switched toImmutableVirtualizedList
- If you want to continue using
ImmutableListView
, you can simply import it from its new location:
-import { ImmutableListView } from 'react-native-immutable-list-view'; +import { ImmutableListView } from 'react-native-immutable-list-view/lib/ImmutableListView';
- If you want to continue using
v1.0.2
v1.0.1
v1.0.0
v0.7.5
v0.7.4
v0.7.3
v0.7.2
v0.7.1
v0.7.0
Changed
- (BREAKING) Stop exporting
ImmutableListView
as default; require named imports- Most apps will continue to work as-is; otherwise, update the following:
-import ImmutableListView from 'react-native-immutable-list-view';
+import { ImmutableListView } from 'react-native-immutable-list-view';
Fixed
- Prevent "unknown props ..." warnings when used with react-native-web (#33)