Tinggi kalk yang responsif bereaksi asli

import React from "react";import { View } from "react-native";import {  useResponsiveHeight,  useResponsiveWidth} from "react-native-responsive-dimensions"; const App = () => {  const height = useResponsiveHeight(25);  const width = useResponsiveWidth(25);   return <View style={{ height, width }} />;};
Lovely Loris