最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - React Navigation 6 - Custom header height - Stack Overflow

programmeradmin0浏览0评论

I have a custom header ponent:

function CustomHeader() {
    return (
       <View style={{ height: headerHeight }}>
          {/* Some buttons in a row... */}
          <View 
            style={{ 
              position: "absolute",
              alignSelf: "center",
              top: headerHeight/2
            }} 
          />
       </View>
    )
}

As you can see, I am absolutely positioning a view in the center of my header, with a top of headerHeight/2.

For getting headers height I am doing:

 import { useHeaderHeight } from "@react-navigation/elements";

 const headerHeight = useHeaderHeight();

But... it returns me 0, as in my stack navigator I am doing:

 screenOptions={{
    headerShown: false,
 }}

because, I am rendering the custom header inside the Screen.

How can I solve this problem? I need to get the default headers height used in Stack Navigators in order to stylize my ponent.

I have a custom header ponent:

function CustomHeader() {
    return (
       <View style={{ height: headerHeight }}>
          {/* Some buttons in a row... */}
          <View 
            style={{ 
              position: "absolute",
              alignSelf: "center",
              top: headerHeight/2
            }} 
          />
       </View>
    )
}

As you can see, I am absolutely positioning a view in the center of my header, with a top of headerHeight/2.

For getting headers height I am doing:

 import { useHeaderHeight } from "@react-navigation/elements";

 const headerHeight = useHeaderHeight();

But... it returns me 0, as in my stack navigator I am doing:

 screenOptions={{
    headerShown: false,
 }}

because, I am rendering the custom header inside the Screen.

How can I solve this problem? I need to get the default headers height used in Stack Navigators in order to stylize my ponent.

Share Improve this question asked Aug 17, 2021 at 16:03 RaulRaul 3,1012 gold badges23 silver badges73 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 17

The useHeaderHeight hook is for getting the height of a header that's rendered by React Navigation.

If you just want to get the default header height, then you need to use getDefaultHeaderHeight:

import { getDefaultHeaderHeight } from '@react-navigation/elements';
import { useSafeAreaFrame, useSafeAreaInsets } from 'react-native-safe-area-context';

// ...

const MyComponent = () => {
  const frame = useSafeAreaFrame();
  const insets = useSafeAreaInsets();

  const headerHeight = getDefaultHeaderHeight(frame, false, insets.top);

  // ...

}

发布评论

评论列表(0)

  1. 暂无评论