效果
import React, {Component} from 'react';
import {
Platform,
StatusBar,
StyleSheet,
Text,...View,
ViewPropTypes,
} from 'react-native';
import PropTypes from 'prop-types';
import DeviceInfo from...'react-native-device-info';
const NAV_BAR_HEIGHT_IOS = 44; //导航栏在iOS中的高度
const NAV_BAR_HEIGHT_ANDROID...= 50; //导航栏在Android中的高度
const NAV_BAR_HEIGHT =
Platform.OS === 'ios' ?...= {
style: ViewPropTypes.style,
title: PropTypes.string,
titleView: PropTypes.element,