diff --git a/Examples/UIExplorer/js/NavigationExperimental/NavigationTransitioner-AnimatedView-pager-example.js b/Examples/UIExplorer/js/NavigationExperimental/NavigationTransitioner-AnimatedView-pager-example.js index 76ad688bc..6f80561f9 100644 --- a/Examples/UIExplorer/js/NavigationExperimental/NavigationTransitioner-AnimatedView-pager-example.js +++ b/Examples/UIExplorer/js/NavigationExperimental/NavigationTransitioner-AnimatedView-pager-example.js @@ -137,8 +137,6 @@ class Example extends Component { class ExampleNavigator extends Component { _render: Function; _renderScene: Function; - _back: Function; - _forward: Function; props: { navigate: Function, @@ -154,8 +152,6 @@ class ExampleNavigator extends Component { super(props, context); this._render = this._render.bind(this); this._renderScene = this._renderScene.bind(this); - this._back = this._back.bind(this); - this._forward = this._forward.bind(this); } render(): ReactElement { @@ -195,14 +191,6 @@ class ExampleNavigator extends Component { /> ); } - - _back(): void { - this.props.navigate('back'); - } - - _forward(): void { - this.props.navigate('forward'); - } } class ExampleScene extends Component { @@ -261,10 +249,6 @@ const styles = StyleSheet.create({ right: 0, top: 0, }, - scrollView: { - flex: 1, - padding: 50, - }, heading: { alignItems : 'center', flex: 1,