forked from marsprince/react-native-UIExplorerApp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCustomTabBarExample.js
More file actions
54 lines (50 loc) · 1.13 KB
/
CustomTabBarExample.js
File metadata and controls
54 lines (50 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/**
* @author brentvatne
* @github https://github.com/brentvatne/react-native-scrollable-tab-view
* @name CustomTabBar
* @edited marsprince
*/
'use strict';
var Platform = require('Platform');
var React = require('react-native');
var CustomTabBar=require('./components/CustomTabBar');
var TAB_BAR_REF = 'TAB_BAR';
var {
StyleSheet,
Text,
View,
ToastAndroid,
} = React;
var CustomTabBarExample= React.createClass({
getInitialState(){
return {
currentPage: 0,
};
},
_goToPage(pageNumber) {
this.setState({currentPage: pageNumber});
this.refs[TAB_BAR_REF].setAnimationValue(pageNumber);
},
render()
{
return(
<CustomTabBar ref={TAB_BAR_REF} tabs={['test1','test2','test5']} activeTab={this.state.currentPage} goToPage={this._goToPage}>
</CustomTabBar>
)
}
});
exports.title = '<CustomeTabBar>';
exports.description = 'Basic tabBar ' +
'show different pages.';
exports.displayName = 'CustomeTabBarExample';
exports.examples = [
{
title: 'Basic CustomeTabBar',
render: function() {
return (
<CustomTabBarExample>
</CustomTabBarExample>
);
},
},
];