react-native-ratings
react-native-ratings copied to clipboard
Throwing error related to image
File doest not existing error throwing while using basic usage of this module. Please refer following trace
None of these files exist:
* airbnb-star-selected.png
* node_modules\react-native-ratings\dist\images\airbnb-star-selected.png\index(.native|.android.js|.native.js|.js|.android.jsx|.native.jsx|.jsx|.android.json|.native.json|.json|.android.ts|.native.ts|.ts|.android.tsx|.native.tsx|.tsx)
2 | import { StyleSheet, Animated, TouchableOpacity } from "react-native";
3 | const STAR_IMAGE = require("../images/airbnb-star.png");
> 4 | const STAR_SELECTED_IMAGE = require("../images/airbnb-star-selected.png");
| ^
5 | const STAR_SIZE = 40;
6 | const Star = props => {
7 | const [selected, setSelected] = useState(false);]