diff --git a/Example/Example.js b/Example/Example.js index f75ca1669..68cf639de 100644 --- a/Example/Example.js +++ b/Example/Example.js @@ -32,9 +32,9 @@ const scenes = Actions.create( - - - + + + props.default}> diff --git a/Example/components/Launch.js b/Example/components/Launch.js index eaa0c3078..56150a339 100644 --- a/Example/components/Launch.js +++ b/Example/components/Launch.js @@ -8,7 +8,7 @@ var Actions = require('react-native-router-flux').Actions; class Launch extends React.Component { render(){ return ( - + Launch page diff --git a/Example/package.json b/Example/package.json index b341b1ffe..4892a48e2 100644 --- a/Example/package.json +++ b/Example/package.json @@ -6,10 +6,10 @@ "start": "node_modules/react-native/packager/packager.sh" }, "dependencies": { - "react-native": "^0.22.0-rc", + "react-native": "^0.22.0-rc4", "react-native-button": "^1.2.1", "react": "^0.14.7", - "react-native-router-flux": "^3.0.11", + "react-native-router-flux": "^3.0.13", "react-native-modalbox": "^1.3.0" } } diff --git a/README.md b/README.md index b9e0e46b3..14ec34d5a 100644 --- a/README.md +++ b/README.md @@ -87,6 +87,8 @@ const scenes = Actions.create( | type | string | 'push' or 'jump' | Defines how the new screen is added to the navigator stack. One of `push`, `jump`, `replace`. If parent container is tabbar (tabs=true), jump will be automatically set. | tabs| bool | false | Defines 'TabBar' scene container, so child scenes will be displayed as 'tabs'. If no `component` is defined, built-in `TabBar` is used as renderer. All child scenes are wrapped into own navbar. | initial | bool | false | Set to `true` if this is the initial scene | +| duration | number | 250 | Duration of transition (in ms) | +| direction | string | 'horizontal' | direction of animation horizontal/vertical | | title | string | null | The title to be displayed in the navigation bar | | navBar | React.Component | | optional custom NavBar for the scene. Check built-in NavBar of the component for reference | | hideNavBar | bool | false | hides navigation bar for this scene | diff --git a/package.json b/package.json index 119c0874e..9a5523505 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-router-flux", - "version": "3.0.13", + "version": "3.0.14", "description": "React Native Router using Flux architecture", "repository": { "type": "git", diff --git a/src/DefaultRenderer.js b/src/DefaultRenderer.js index 805e49126..52d751229 100644 --- a/src/DefaultRenderer.js +++ b/src/DefaultRenderer.js @@ -46,10 +46,10 @@ export default class DefaultRenderer extends Component { return ( { - Animated.timing(pos, {toValue: navState.index, duration: selected.duration || 500}).start(); + Animated.timing(pos, {toValue: navState.index, duration: selected.duration || 250}).start(); }} renderScene={this._renderCard} /> @@ -69,7 +69,9 @@ export default class DefaultRenderer extends Component { ); } @@ -83,6 +85,7 @@ export default class DefaultRenderer extends Component { const styles = StyleSheet.create({ animatedView: { flex: 1, + backgroundColor:'transparent' }, });