forked from dohooo/react-native-reanimated-carousel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.tsx
62 lines (57 loc) · 1.82 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
import * as React from 'react';
import { View } from 'react-native-ui-lib';
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;
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,
} as const)
: ({
vertical: false,
width: PAGE_WIDTH,
height: PAGE_WIDTH / 2,
} as const);
return (
<View style={{ flex: 1 }}>
<Carousel
{...baseOptions}
loop
autoPlay={isAutoPlay}
autoPlayInterval={isFast ? 100 : 2000}
data={[...new Array(6).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;