forked from dohooo/react-native-reanimated-carousel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.tsx
71 lines (64 loc) · 1.67 KB
/
index.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import * as React from "react";
import { View } from "react-native";
import Carousel from "react-native-reanimated-carousel";
import { SBItem } from "../../components/SBItem";
import SButton from "../../components/SButton";
import { ElementsText, window } from "../../constants";
const PAGE_WIDTH = window.width;
const COUNT = 6;
function Index() {
const [isVertical, setIsVertical] = React.useState(false);
const [isFast, setIsFast] = React.useState(false);
const [isAutoPlay, setIsAutoPlay] = React.useState(false);
const baseOptions = isVertical
? ({
vertical: true,
width: PAGE_WIDTH,
height: PAGE_WIDTH / 2 / COUNT,
style: {
height: PAGE_WIDTH / 2,
},
} as const)
: ({
vertical: false,
width: PAGE_WIDTH / COUNT,
height: PAGE_WIDTH / 2,
style: {
width: PAGE_WIDTH,
},
} as const);
return (
<View style={{ flex: 1 }}>
<Carousel
{...baseOptions}
loop
autoPlay={isAutoPlay}
autoPlayInterval={isFast ? 100 : 2000}
data={[...new Array(12).keys()]}
renderItem={({ index }) => <SBItem key={index} index={index} />}
/>
<SButton
onPress={() => {
setIsVertical(!isVertical);
}}
>
{isVertical ? "Set horizontal" : "Set Vertical"}
</SButton>
<SButton
onPress={() => {
setIsFast(!isFast);
}}
>
{isFast ? "NORMAL" : "FAST"}
</SButton>
<SButton
onPress={() => {
setIsAutoPlay(!isAutoPlay);
}}
>
{ElementsText.AUTOPLAY}:{`${isAutoPlay}`}
</SButton>
</View>
);
}
export default Index;