Satyajit Sahoo

Results 423 comments of Satyajit Sahoo

This is interesting feature. With v5, order is derived from the order of `Screen` elements, so we don't need a separate thing for that.

It's implemented like this in React Navigation 5 (i.e. there's no `navigationConfig`, just regular props). We haven't exported the views yet, but something we'll do soon after ensuring that the...

If you don't care about the HOC, wouldn't it be better to mock it?

There's another issue I just thought of with something like `StaticNavigator`. There are several navigators such as stack, tab, drawer etc. Each provide additional helpers (such as `push` for stack,...

React Navigation 5 integrates with Redux devtools extension. Actually I think it'll be pretty straightforward to do the same for v4.

I think if we are thinking about a new API for navigators, there are few things worth addressing - Should be able to dynamically configure navigators and screens - Should...

how about an API similar to React DOM Portals? ```js // somewhere inside your render method {this.props.navigation.createModal( // whatever it's rendered here will be rendered on top of current screen...

tbh it feels weird to me that navigation events happen even before the screen mounts. even if we queue this, that means as soon as the navigator mounts, there'll be...