Skip to content
IntelliHelper logo

Intelli UI

React NativeMedia

Media Player

Glass audio/video player with CC, quality selector, seek, and volume. Import from @intelli/ui-native. Use onPress and style instead of DOM events and className.
npx @intellihelper/cli@latest add @native/media-player

Usage

From an Expo or React Native app, wrap the tree in ThemeProvider.

import { ThemeProvider } from "@/components/ui/native/theme";
import { MediaPlayer } from "@/components/ui/native/media";

export function Example() {
  return (
    <ThemeProvider theme="mono" followSystem>
      <MediaPlayer title="Track" progress={35} />
    </ThemeProvider>
  );
}

Platform notes

This component is implemented in packages/ui-native. Preview it on a device with pnpm native from the monorepo (Expo Go).

Optional peers: expo-blur for real frost, react-native-safe-area-context for sheet/dialog insets.

Source: ui-native components on GitHub

9:41

Track

iPhone preview — same APIs as @intelli/ui-native