-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathScrollableTabViewExample.js
95 lines (91 loc) · 2.8 KB
/
ScrollableTabViewExample.js
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/**
* @author brentvatne
* @github https://github.com/brentvatne/react-native-scrollable-tab-view
* @name CustomTabBar
* @added marsprince
*/
'use strict';
var Platform = require('Platform');
var React = require('react-native');
var ScrollableTabView = require('react-native-scrollable-tab-view');
var CustomTabBar=require('./components/CustomTabBar');
var {
StyleSheet,
Text,
View,
ScrollView,
} = React;
var deviceWidth = require('Dimensions').get('window').width;
var ScrollableTabViewExample = React.createClass({
render() {
return (
<View style={styles.container}>
<ScrollableTabView renderTabBar={() => <CustomTabBar />}>
<ScrollView tabLabel="paper" style={styles.tabView}>
<View style={styles.card}>
<Text>News</Text>
</View>
</ScrollView>
<ScrollView tabLabel="stalker" style={styles.tabView}>
<View style={styles.card}>
<Text>Friends</Text>
</View>
</ScrollView>
<ScrollView tabLabel="chatboxes" style={styles.tabView}>
<View style={styles.card}>
<Text>Messenger</Text>
</View>
</ScrollView>
<ScrollView tabLabel="world" style={styles.tabView}>
<View style={styles.card}>
<Text>Notifications</Text>
</View>
</ScrollView>
<ScrollView tabLabel="round" style={styles.tabView}>
<View style={styles.card}>
<Text>Other nav</Text>
</View>
</ScrollView>
</ScrollableTabView>
</View>
);
}
});
exports.title = '<ScrollableTabView>';
exports.description = 'ScrollableTabView ' +
'show different pages.';
exports.displayName = 'ScrollableTabView Example';
exports.examples = [
{
title: 'Basic ScrollableTabView ',
render: function() {
return (
<ScrollableTabViewExample>
</ScrollableTabViewExample>
);
},
},
];
var styles = StyleSheet.create({
container: {
flex: 1,
marginTop: 30,
},
tabView: {
width: deviceWidth,
padding: 10,
backgroundColor: 'rgba(0,0,0,0.01)',
},
card: {
borderWidth: 1,
backgroundColor: '#fff',
borderColor: 'rgba(0,0,0,0.1)',
margin: 5,
height: 150,
padding: 15,
shadowColor: '#ccc',
shadowOffset: {width: 2, height: 2},
shadowOpacity: 0.5,
shadowRadius: 3,
},
});