forked from nysamnang/react-native-raw-bottom-sheet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdynamic.js
68 lines (63 loc) · 1.52 KB
/
dynamic.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
/* eslint-disable no-use-before-define */
/* eslint-disable import/no-unresolved */
import React, { Component } from "react";
import { StyleSheet, FlatList, View, TouchableOpacity, Text } from "react-native";
import RBSheet from "react-native-raw-bottom-sheet";
const ITEMS = [...Array(25).keys()];
class Dynamic extends Component {
renderItem({ item }) {
return (
<View>
<TouchableOpacity style={styles.button} onPress={() => this[RBSheet + item].open()}>
<Text style={styles.buttonText}>ITEM {item}</Text>
</TouchableOpacity>
<RBSheet
ref={ref => {
this[RBSheet + item] = ref;
}}
>
<View style={styles.bottomSheetContainer}>
<Text style={styles.bottomSheetText}>I AM ITEM {item}</Text>
</View>
</RBSheet>
</View>
);
}
render() {
return (
<FlatList
style={styles.container}
data={ITEMS}
renderItem={this.renderItem}
keyExtractor={(_, index) => index.toString()}
/>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
marginVertical: 50,
marginHorizontal: 20
},
button: {
backgroundColor: "#4EB151",
paddingVertical: 10,
alignItems: "center",
borderRadius: 3,
marginTop: 20
},
buttonText: {
color: "#FFFFFF",
fontSize: 16
},
bottomSheetContainer: {
flex: 1,
justifyContent: "center",
alignItems: "center"
},
bottomSheetText: {
fontSize: 28
}
});
export default Dynamic;