This commit is contained in:
Rahim
2025-09-22 23:39:30 +10:00
parent d3221ec211
commit d2b2dd4868
132 changed files with 860 additions and 969 deletions
@@ -40,4 +40,4 @@
"publishConfig": {
"access": "public"
}
}
}
@@ -29,7 +29,7 @@ export interface MediaElementRef {
playbackRate: number;
readyState: number;
networkState: number;
play(): Promise<void>;
pause(): void;
load(): void;
@@ -37,10 +37,8 @@ export interface MediaElementRef {
}
// Placeholder component - will be implemented later
export const VideoElement = React.forwardRef<MediaElementRef, MediaElementProps>(
(_, __) => {
return React.createElement('div', { children: 'React Native VideoElement - Coming Soon' });
}
);
export const VideoElement = React.forwardRef<MediaElementRef, MediaElementProps>((_, __) => {
return React.createElement('div', { children: 'React Native VideoElement - Coming Soon' });
});
VideoElement.displayName = 'VideoElement';
VideoElement.displayName = 'VideoElement';
@@ -10,4 +10,4 @@
},
"include": ["src/**/*"],
"exclude": ["dist", "node_modules"]
}
}
@@ -18,4 +18,4 @@ export default defineConfig({
incremental: false,
},
},
});
});