react-native-alphabetlistview
react-native-alphabetlistview copied to clipboard
TypeError: undefined is not an object (evaluating 'new _reactNative.ListView.DataSource')
after updating my react native version from 59 to 0.63.2 app crashed as ListView is deprecated in new react native version.
for workaround,
in node_modules\react-native-alphabetlistview\components\SelectableSectionsListView.js
I have installed "deprecated-react-native-listview".
Added - import { ListView } from 'deprecated-react-native-listview';
removed ListView import from react-native.
Did you test with any other react-native list?