๐ Features
- ๐ต Powered by Media3 (Android) & AVFoundation (iOS)
- ๐ Lock screen controls & background playback
- ๐ Automatic handling of notification center (Android & iOS)
- ๐ฆ Built fully in TypeScript โ no JS wrappers
- ๐ง Simple React hook & module interface
- โก๏ธ Lightweight, fast, and production-ready
๐ง React Hook in Action
import { useAudioPro } from 'react-native-audio-pro';
export default function Player() {
const { state, duration, position } = useAudioPro();
return (
<View>
<Text>State: {state}</Text>
<Text>Position: {position} / {duration}</Text>
</View>
);
}
๐งฉ Module in Action
import {AudioPro} from 'react-native-audio-pro';
AudioPro.configure({ contentType: 'speech' });
AudioPro.load({
url: 'https://example.com/audio.mp3',
title: 'Sample Track',
artwork: 'https://example.com/image.jpg',
artist: 'Narrator Name',
});
AudioPro.play();
Documentation
For full setup and API reference, see the GitHub README.
- ๐ Full API for
AudioPro
module anduseAudioPro
hook - ๐ฆ Details on payloads, types, and setup options
- ๐งช Example app demonstrating integration and usage
- ๐ง Platform-specific setup (Android & iOS)
๐ Ready to build?
Check it out and let us know how you go! If you run into any issues, log an issue โ weโll squash bugs fast. ๐ช