在测试的时候,发现弹出modal时,无论怎么设置StatusBar
,都无法有效隐藏掉状态栏。
搜索了一圈,发现了个解决办法:直接设置Theme
即可:
编辑android/app/src/main/res/values/styles.xml
:
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.ReactNative.AppCompat.Light.NoActionBar.FullScreen">
<!-- Customize your theme here. -->
</style>
</resources>