mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
111 lines
3.2 KiB
TypeScript
111 lines
3.2 KiB
TypeScript
import * as React from 'react';
|
|
import {
|
|
LayoutChangeEvent,
|
|
NativeSyntheticEvent,
|
|
NativeScrollEvent,
|
|
StyleSheet,
|
|
Text,
|
|
View,
|
|
ViewStyle
|
|
} from 'react-native';
|
|
|
|
import Carousel, { Pagination } from 'react-native-snap-carousel';
|
|
|
|
class SnapCarouselTest extends React.Component {
|
|
render(): React.ReactElement<any> {
|
|
return (
|
|
<View>
|
|
<Carousel
|
|
itemWidth={75}
|
|
sliderWidth={300}
|
|
/>
|
|
<Carousel
|
|
itemWidth={75}
|
|
sliderWidth={300}
|
|
containerCustomStyle={styles.container}
|
|
enableMomentum={true}
|
|
keyboardDismissMode='interactive'
|
|
onSnapToItem={this.onSnapToItem}
|
|
onScroll={this.onScroll}
|
|
onLayout={this.onLayout}
|
|
scrollEndDragDebounceValue={100}
|
|
vertical={false}
|
|
>
|
|
<View
|
|
style={styles.item}
|
|
>
|
|
<Text>Item #1</Text>
|
|
</View>
|
|
</Carousel>
|
|
<Carousel
|
|
itemHeight={75}
|
|
sliderHeight={300}
|
|
vertical={true}
|
|
/>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
private onSnapToItem = (index: number) => {
|
|
console.log("Snapped to: ", index);
|
|
}
|
|
|
|
private onScroll = (event: NativeSyntheticEvent<NativeScrollEvent>) => {
|
|
console.log("Scrolled: ", event);
|
|
}
|
|
|
|
private onLayout = (event: LayoutChangeEvent) => {
|
|
console.log("Layout: ", event);
|
|
}
|
|
}
|
|
|
|
class SnapCarouselWithPaginationTest extends React.Component<{}, {activeSlide: number}> {
|
|
constructor(props: {}) {
|
|
super(props);
|
|
this.state = { activeSlide: 0 };
|
|
}
|
|
|
|
render(): React.ReactElement<any> {
|
|
return (
|
|
<View>
|
|
<Carousel
|
|
itemWidth={75}
|
|
sliderWidth={300}
|
|
keyboardDismissMode='interactive'
|
|
onSnapToItem={(index) => this.setState({ activeSlide: index })}
|
|
>
|
|
<View>
|
|
<Text>Item #1</Text>
|
|
</View>
|
|
<View>
|
|
<Text>Item #2</Text>
|
|
</View>
|
|
</Carousel>
|
|
<Pagination
|
|
dotsLength={2}
|
|
activeDotIndex={this.state.activeSlide}
|
|
containerStyle={{ backgroundColor: 'rgba(0, 0, 0, 0.75)' }}
|
|
dotStyle={{
|
|
width: 10,
|
|
height: 10,
|
|
borderRadius: 5,
|
|
marginHorizontal: 8,
|
|
backgroundColor: 'rgba(255, 255, 255, 0.92)'
|
|
}}
|
|
inactiveDotOpacity={0.4}
|
|
inactiveDotScale={0.6}
|
|
/>
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1
|
|
} as ViewStyle,
|
|
item: {
|
|
width: 75
|
|
} as ViewStyle,
|
|
});
|