Quantcast
Channel: Active questions tagged react-native+typescript - Stack Overflow
Viewing all articles
Browse latest Browse all 6287

what is the best way to setParams to navigation before setting the options for Navigation using setOptions?

$
0
0

I wanna know the best way to set the params and options for react native navigation in a class component.note that the same params are used in options.when I put all code in the constructor I got params undefined because of timing issue.and it works. for me in one case when I added option in componentDidMount , I will write some examples in the code below.

1- first case using class component (it's working)

type Props = {navigation: NavigationProp<any>;route: RouteProps<{ Example: {title: string} }, 'Example'>}export default class Example extends Component <Props> {constructor(props: Props){   super(props)   this.props.navigation.setParams({ title: 'title' });}componentDidMount(){this.props.navigation.setOptions({ title: this.props.route.params.title })}...}

2 - second case using FC: (not using this example but I think it's also the best way todo for the FC).

export function Example: React.FC = () => {const navigation = useNavigation();const route = useRoute();useLayoutEffect(()=>{navigation.setParams({ title: 'title' });navigation.setOptions({ title: route.params.title })})...}

so I hope my question is clear, is that theright way to set Header options with the lates Navigation on React Native?


Viewing all articles
Browse latest Browse all 6287

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>