In the following example of react navigation intro https://reactnavigation.org/docs/intro/, you can pass down the screen's props to navigationOptions.
// Nav options can be defined as a function of the screen's props:
static navigationOptions = ({ navigation }) => ({
title: `Chat with ${navigation.state.params.user}`,
});
Is it supported yet in this CLJS wrappers for react-navigation? If yes, how do we do the same?
In the following example of react navigation intro https://reactnavigation.org/docs/intro/, you can pass down the screen's props to
navigationOptions.Is it supported yet in this CLJS wrappers for react-navigation? If yes, how do we do the same?