You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am getting the following error.
error: Error: Unable to resolve module react-native/Libraries/Components/ScrollResponder from C:\Projects\Tests\DataTable\node_modules\deprecated-react-native-listview\index.js: react-native/Libraries/Components/ScrollResponder could not be found within the project or in these directories:
node_modules
If you are sure the module exists, try these steps:
My App.js has only this code.
import React from 'react';
import type {Node} from 'react';
import {
SafeAreaView,
ScrollView,
StatusBar,
StyleSheet,
Text,
useColorScheme,
View,
} from 'react-native';
import {DataTable, Cell} from 'react-native-data-table';
Describe the bug
I am getting the following error.
error: Error: Unable to resolve module react-native/Libraries/Components/ScrollResponder from C:\Projects\Tests\DataTable\node_modules\deprecated-react-native-listview\index.js: react-native/Libraries/Components/ScrollResponder could not be found within the project or in these directories:
node_modules
If you are sure the module exists, try these steps:
17 | const RCTScrollViewManager = ReactNative.NativeModules.ScrollViewManager;
18 | const ScrollView = ReactNative.ScrollView;
To reproduce
My App.js has only this code.
import React from 'react';
import type {Node} from 'react';
import {
SafeAreaView,
ScrollView,
StatusBar,
StyleSheet,
Text,
useColorScheme,
View,
} from 'react-native';
import {DataTable, Cell} from 'react-native-data-table';
<View
style={{
backgroundColor: isDarkMode ? Colors.black : Colors.white,
}}>
Hello 1234
Hello 1234
Hello 1234
Version and device info
I have only these dependencies.
"dependencies": {
"react": "17.0.2",
"react-native": "0.65.1",
"react-native-data-table": "^0.2.1"
}
The text was updated successfully, but these errors were encountered: