-
Notifications
You must be signed in to change notification settings - Fork 11
/
Basic2Carousels.tsx
57 lines (55 loc) · 1.4 KB
/
Basic2Carousels.tsx
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
import React from "react";
import { Text, TextStyle, View, ViewStyle } from "react-native";
import Carousel from "../../src/index";
const styles = {
slide1: {
flex: 1,
justifyContent: "center",
alignItems: "center",
backgroundColor: "#a3c9a8"
} as ViewStyle,
slide2: {
flex: 1,
justifyContent: "center",
alignItems: "center",
backgroundColor: "#84b59f"
} as ViewStyle,
slide3: {
flex: 1,
justifyContent: "center",
alignItems: "center",
backgroundColor: "#69a297"
} as ViewStyle,
text: {
color: "#1f2d3d",
opacity: 0.7,
fontSize: 48,
fontWeight: "bold"
} as TextStyle
};
export const Basic2Carousels = (): JSX.Element => (
<View style={{ flex: 1, justifyContent: "center", alignItems: "center" }}>
<Carousel>
<View style={styles.slide1}>
<Text style={styles.text}>1</Text>
</View>
<View style={styles.slide2}>
<Text style={styles.text}>2</Text>
</View>
<View style={styles.slide3}>
<Text style={styles.text}>3</Text>
</View>
</Carousel>
<Carousel index={1} horizontal={false}>
<View style={styles.slide1}>
<Text style={styles.text}>1</Text>
</View>
<View style={styles.slide2}>
<Text style={styles.text}>2</Text>
</View>
<View style={styles.slide3}>
<Text style={styles.text}>3</Text>
</View>
</Carousel>
</View>
);