如何根据 phone 两台平板电脑的屏幕尺寸或平均 android phone 制作 React 本机应用程序响应屏幕

How to make React native app responsive screen according to phone's screen size for both tablets or average android phone

我在 React Native 应用程序中有一个 pin 码屏幕,我想根据 phone 或平板电脑的大小将其设置为 responsive/enlarge,例如我在屏幕上有一个徽标或任何其他组件都是可见的小在平板电脑中,但在普通模拟器中,这是平均的我想根据平板电脑的大小使其变大

以下是部分截图

我想将平板电脑的屏幕项目放大为平均可见度 phone

看看这个。

This is how you can make your app responsive

Dimensions use for image and buttons click this link and read Documentation

示例

    Height: Dimensions.get('window').height / 2.5,
    Width: Dimensions.get('window').width / 2.5,