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
|
import {
Dimensions,
Platform,
} from 'react-native';
const { width } = Dimensions.get('window');
const IosTransition = (index, position) => {
const inputRange = [index - 1, index, index + 0.99, index + 1];
const outputRange = [width, 0, -10, -10];
const translateY = 0;
const translateX = position.interpolate({
inputRange,
outputRange,
});
const opacity = position.interpolate({
inputRange,
outputRange: [0, 1, 1, 0],
});
return {
opacity,
transform: [{ translateX }, { translateY }],
};
};
const DroidTransition = (index, position) => {
const inputRange = [index - 1, index, index + 0.99, index + 1];
const opacity = position.interpolate({
inputRange,
outputRange: [0, 1, 1, 0],
});
const translateX = 0;
const translateY = position.interpolate({
inputRange,
outputRange: [50, 0, 0, 0],
});
return {
opacity,
transform: [{ translateX }, { translateY }],
};
};
function transition() {
return {
screenInterpolator: (sceneProps) => {
const { position, scene } = sceneProps;
const { index } = scene;
if (Platform.OS === 'ios') { return IosTransition(index, position); }
return DroidTransition(index, position);
},
};
}
export default transition;
|