如何通过React Native在Android上找到状态栏的高度?
如果我检查React.Dimensions高度,该值似乎也包括状态栏高度,但我试图找到没有状态栏的布局高度。
你不需要任何插件(只需使用StatusBar.currentHeight):
原文链接:https://www.f2er.com/react/301355.htmlimport {StatusBar} from 'react-native'; console.log('statusBarHeight: ',StatusBar.currentHeight);
编辑:显然这似乎总是在Android上工作,但在iOS上,最初未定义确实返回:(