React Native - Disable “Screen Size” Setting

后端 未结 1 1582
梦如初夏
梦如初夏 2021-01-18 23:34

I am currently developing a React Native application, and some of our users might have slight vision problems. We wish to prevent the setting \"Display Size\" in Android, as

相关标签:
1条回答
  • 2021-01-18 23:54

    You can control using flex property in view. Use to below to the parent view and adjust the flex value from 0.1 to 1 to adjust the view. below is the example for 70% of the screen size.

    <View style={{ flex : 0.7 }}>
    
    </View>
    
    0 讨论(0)
提交回复
热议问题