Brak opisu

NavigationBarHeight.js 284B

123456789
  1. /**
  2. * Created by zack on 2018/4/20.
  3. */
  4. import {Platform, Dimensions} from 'react-native'
  5. const NavigationBarHeight = {
  6. height: Platform.OS === 'ios' ? (Dimensions.get('window').height < 812 ? 64 : 86) : 56 ////refer to google Android MD style.
  7. }
  8. export default NavigationBarHeight