您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

HapticTab.tsx 564B

123456789101112131415161718
  1. import { BottomTabBarButtonProps } from '@react-navigation/bottom-tabs';
  2. import { PlatformPressable } from '@react-navigation/elements';
  3. import * as Haptics from 'expo-haptics';
  4. export function HapticTab(props: BottomTabBarButtonProps) {
  5. return (
  6. <PlatformPressable
  7. {...props}
  8. onPressIn={(ev) => {
  9. if (process.env.EXPO_OS === 'ios') {
  10. // Add a soft haptic feedback when pressing down on the tabs.
  11. Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Light);
  12. }
  13. props.onPressIn?.(ev);
  14. }}
  15. />
  16. );
  17. }