mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-01-12 22:51:18 +08:00
55 lines
1.4 KiB
TypeScript
55 lines
1.4 KiB
TypeScript
import * as React from 'react';
|
|
import { Animated, Platform } from 'react-native';
|
|
import { BaseButton } from 'react-native-gesture-handler';
|
|
|
|
const AnimatedBaseButton = Animated.createAnimatedComponent(BaseButton);
|
|
|
|
type Props = React.ComponentProps<typeof BaseButton> & {
|
|
activeOpacity: number;
|
|
};
|
|
|
|
const useNativeDriver = Platform.OS !== 'web';
|
|
|
|
export default class BorderlessButton extends React.Component<Props> {
|
|
static defaultProps = {
|
|
activeOpacity: 0.3,
|
|
borderless: true,
|
|
};
|
|
|
|
private opacity = new Animated.Value(1);
|
|
|
|
private handleActiveStateChange = (active: boolean) => {
|
|
if (Platform.OS !== 'android') {
|
|
Animated.spring(this.opacity, {
|
|
stiffness: 1000,
|
|
damping: 500,
|
|
mass: 3,
|
|
overshootClamping: true,
|
|
restDisplacementThreshold: 0.01,
|
|
restSpeedThreshold: 0.01,
|
|
toValue: active ? this.props.activeOpacity : 1,
|
|
useNativeDriver,
|
|
}).start();
|
|
}
|
|
|
|
this.props.onActiveStateChange?.(active);
|
|
};
|
|
|
|
render() {
|
|
const { children, style, enabled, ...rest } = this.props;
|
|
|
|
return (
|
|
<AnimatedBaseButton
|
|
{...rest}
|
|
onActiveStateChange={this.handleActiveStateChange}
|
|
style={[
|
|
style,
|
|
Platform.OS === 'ios' && enabled && { opacity: this.opacity },
|
|
]}
|
|
>
|
|
{children}
|
|
</AnimatedBaseButton>
|
|
);
|
|
}
|
|
}
|