npm i react-native-aspect-ratio
import { Screen } from "react-native-aspect-ratio";
// You can use in your style.
height: Screen.setDimension(90, "h", {411, 736}), // x, y values of designed component. x: 411, y: 736
width: Screen.setDimension(80, 'w', {411, 736}),
Returns screen width and height.
height: Screen.getDimension().height,
width: Screen.getDimension().width,