All Articles

[Wecode] TIL_Day47

TIL 47일차

  • 14:30 | 2nd Project - Market list Detail page, Prochart Page

Group Project | GoinOne

  • 오늘 한 것

    • 화면 구조에 StackNavigator 추가하기

코드 기록

React Native | Navigation의 Component 안에서 Header 설정하기

this.props.navigation.setOptions({
  headerRight: () => (
    <Button
      onPress={() => {
        //this.props.navigation.popToTop();
        this.props.navigation.navigate('MainFeed', {
          image: this.state.image,
          body: this.state.body
        });
        //this.props.route.params.addArticle(this.state.body, this.state.image);
      }}
      title="공유"
    />
  )
});

네비게이션 컴포넌트 헤더의 하단 선 지우기

<Stack.Screen
  options={{
    title: null,
    headerStyle: { shadowRadius: 0, shadowOffset: { height: 0 } }
  }}
  name="MainTabNavigator"
  component={MainTabNavigator}
/>