We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48ac33f commit cc8df4eCopy full SHA for cc8df4e
Example/components/TabView.js
@@ -31,8 +31,8 @@ class TabView extends React.Component {
31
<View style={[styles.container, this.props.sceneStyle]}>
32
<Text>Tab title:{this.props.title} name:{this.props.name}</Text>
33
<Text>Tab data:{this.props.data}</Text>
34
- {this.props.name === 'tab_1_1' &&
35
- <Button onPress={() => Actions.tab_1_2()}>next screen for tab1_1</Button>
+ {this.props.name === 'tab1_1' &&
+ <Button onPress={() => Actions.tab1_2()}>next screen for tab1_1</Button>
36
}
37
{this.props.name === 'tab_2_1' &&
38
<Button onPress={() => Actions.tab_2_2()}>next screen for tab2_1</Button>
0 commit comments