Constimport React from 'react';
import { MiniCardAudio } from 'mediasfu-reactnative-expo';
function App() {
return (
<MiniCardAudio
name="Alice Johnson"
showWaveform={true}
overlayPosition="bottomRight"
barColor="blue"
textColor="white"
imageSource="https://example.com/profile.jpg"
roundedImage={true}
customStyle={{ width: 100, height: 100 }}
/>
);
}
export default App;
MiniCardAudio displays an audio card with optional waveform animation and custom styling options.
This component supports showing an animated waveform, an image, and custom positioning for the overlay. It is designed for displaying audio-related information in a visually appealing, customizable way.