NativeBase + Exponent Header

后端 未结 5 1053
情话喂你
情话喂你 2021-02-07 08:44

I\'m using NativeBase with Exponent. The Header goes beneath the phone\'s StatusBar. You can see this in the NativeBase demo that Exponent released.

Does anyone

5条回答
  •  盖世英雄少女心
    2021-02-07 09:00

    I ended up adding a marginTop with the value of the device's StatusBar.

    import {
      StatusBar,
    } from 'react-native'
    

    In my global stylesheet:

    header: {
      marginTop: StatusBar.currentHeight,
    }
    

提交回复
热议问题