Hedger Wang

Results 17 comments of Hedger Wang

@jarredwitt: `NavigationCardStack` is primarily a simple component with canned "built-in" animation and gestures. The prop direction `direction` says that you can decide how the transition and gesture should be handled...

`NavigationCardStack` is just a `NavigationAnimatedView` that uses `NavigationCard` to wrap its scenes, and it also comes with few built-in canned animation and gesture. Adding one prop to toggle the gesture...

@zackify : Would it work if you apply the style to the scene that covers the card? Otherwise, you'd have to manually provide the animation style. ``` renderScene(props) { return...

@jmurzy : We're going to remove all Reducers from NavigationExperimental. tl;dr; For navigation actions at high level, reducers from NavigationReducers does not know anything about the app-specific state thus people...

@domchristie : navigate states don't necessarily need to be nested. For instance, say that you have three tabs "apple", "banana" and "orange". Each tab has its won scenes. ![image](https://cloud.githubusercontent.com/assets/1504439/15795212/6c762826-29a4-11e6-8db8-e977309335b2.png) So...

@jnak: Please keep in mind that that `NavigationAnimatedView` is deprecated. For focus change, there are to ways to detect focus change. 1. The navigation states is owned and managed by...