Jake Murzy

Results 31 comments of Jake Murzy

Great questions 💯 I would say it really comes down to personal preference. Calling one better than the other would be unfair. This project was born out of my frustration...

@brentvatne Thanks! Here's what your routes config would look like for something akin to the Facebook app: ``` js ``` That's it 🤖 This will render a `NavigationTransitioner` (for "stack...

@brentvatne Oh no. Those would be some ugly looking URIs 😅 I know this can be a bit confusing. It's cyclic once you enter ``. Notice in [this](https://github.com/jmurzy/react-router-native/blob/master/examples/Simple/app/routes.js#L88) example, you...

@brentvatne Final URL would be the last navigated path. Same as the browser behavior. In above case, it is **/feed/profile/jake**. And if you wanted to have another tab as in...

React Router matches routes [in the order they are defined](https://github.com/reactjs/react-router/blob/master/docs/guides/RouteMatching.md#precedence). See also, reactjs/react-router#1923. Hence, the jumps between tabs. So you will need to make sure "identical" paths are `relative` to...

@arthurpark Take a look at the example app. The only difference is that instead of rendering the [tabs](https://github.com/jmurzy/react-router-native/blob/master/examples/Aviato/app/components/Master/index.js#L180) in the `Master` component, you'd have to put them in each of...

See my comment [here](https://github.com/facebook/react-native/issues/8350#issuecomment-228251896). In terms of react-router-native, we should probably make this easier by passing the `overlay` `ref` in props to `route` components as soon as facebook/react-native@c57bac4767fe4301ff4515b073d26245c6905610 lands in...

Same here. I think we are only a couple weeks away from calling it just `Navigation`. ⌛️ 🍺

@cpsubrian Thanks for the gist. I'll try to reproduce this on my end, and get back to you in the next few days.

Just saw that also. Here's my [comment](https://medium.com/@jmurzy/this-is-great-and-i-agree-v4-is-a-leap-forward-but-navigation-on-mobile-is-a-tad-bit-more-f3ed1e73cd6a#.kryjj12qy) if you're interested. Currently we only support v3 and I'm working on v4 support right now. It won't be easy but I'm determined....