通过 react-native 提供的原生组件 StatusBar 实现
https://reactnative.cn/docs/next/statusbar
translucent 属性
指定状态栏是否透明。设置为 true 时,应用会延伸到状态栏之下绘制(即所谓“沉浸式”——被状态栏遮住一部分)。常和带有半透明背景色的状态栏搭配使用。
指定状态栏是否透明。设置为 true 时,应用会延伸到状态栏之下绘制(即所谓“沉浸式”——被状态栏遮住一部分)。常和带有半透明背景色的状态栏搭配使用。
<StatusBar backgroundColor="transparent" translucent={true} />