Got error on launch :

@joenoon Code must be updated for 0.26 ?
It's just a guess. If you use side menu, you will have to add onNavigate prop to DefaultRenderer. In side menu integration example is same issue - there is not onNavigate prop.
<DefaultRenderer navigationState={children[0]} />
vs.
<DefaultRenderer navigationState={children[0]} onNavigate={this.props.onNavigate} />
And also, if you use DefaultRenderer somewhere, you should pass onNavigate prop now
Good guess, it fixes the error, thanks !
Now my custom navbar doesn't appear anymore and the side menu is not accessible
It's ok, I had just to remove hideNavBar={true}
Most helpful comment
It's just a guess. If you use side menu, you will have to add
onNavigateprop toDefaultRenderer. In side menu integration example is same issue - there is notonNavigateprop.vs.
And also, if you use
DefaultRenderersomewhere, you should passonNavigateprop now