Tell us which versions you are using:
how to make title like picture, with place and date dynamic from component . catch data from scene component to title router ??

thanks
https://github.com/aksonov/react-native-router-flux/blob/master/docs/API.md
Scene
renderTitle | React.Component | 聽 | React component to render title for nav bar
-- | -- | -- | --
ok, solved.
I use Actions.scene({ params: valueHere })
~Not sure if renderTitle solves this matter, but it was mentioned by OP - even though he solved in another way... Is it possible to set the title dynamically, from inside the Scene's component? E.g. my component's title is based on a field of a prop it receives.~
Going to submit a PR with an example to illustrate this. Found how to do it:
renderTitle={({prop}) => 'List: ${prop.name}'}
@blackinitial How to access to params in the screen.
Most helpful comment
~Not sure if
renderTitlesolves this matter, but it was mentioned by OP - even though he solved in another way... Is it possible to set the title dynamically, from inside the Scene's component? E.g. my component's title is based on a field of a prop it receives.~Going to submit a PR with an example to illustrate this. Found how to do it:
renderTitle={({prop}) => 'List: ${prop.name}'}