Module not found: Can't resolve 'react-native-responsive-screen' in 'E:\Dip Soft Dev\Mobile\MAJOR\FinalProject\src\views\components' code example
Example: react-native-responsive-screen
import {widthPercentageToDP as wp, heightPercentageToDP as hp} from 'react-native-responsive-screen'; class Login extends Component { render() { return ( <View style={styles.container}> <View style={styles.textWrapper}> <Text style={styles.myText}>Login</Text> </View> </View> ); }} const styles = StyleSheet.create({ container: { flex: 1 }, textWrapper: { height: hp('70%'),