Files
DefinitelyTyped/react-native
cailenmusselman bb7f9c8b2e Add navigationContext to react-native Navigator
react-native\Libraries\CustomComponents\Navigator\Navigator.js

var Navigator = React.createClass({
  ...
  componentWillMount: function() {
    // TODO(t7489503): Don't need this once ES6 Class landed.
    this.__defineGetter__('navigationContext', this._getNavigationContext);

    this._subRouteFocus = [];
    ...
    ... 
}

react-native\Libraries\CustomComponents\Navigator\Navigation\NavigationContext.js

class NavigationContext {
   ...
}
2016-09-20 16:21:55 -06:00
..