feat: update

This commit is contained in:
2025-11-05 17:24:55 +08:00
parent 61252cdf36
commit ce324c9bb5
42 changed files with 2078 additions and 448 deletions

View File

@@ -90,20 +90,20 @@ export function useHaptics() {
/**
* 使用示例:
*
*
* function MyComponent() {
* const haptics = useHaptics();
*
*
* const handlePress = () => {
* haptics.light();
* // 执行其他操作
* };
*
*
* const handleSuccess = () => {
* haptics.success();
* // 显示成功消息
* };
*
*
* return (
* <TouchableOpacity onPress={handlePress}>
* <Text>Press me</Text>
@@ -111,4 +111,3 @@ export function useHaptics() {
* );
* }
*/