MediaSFU React Native (Expo)
    Preparing search index...

    Variable MiniCardAudioConst

    MiniCardAudio: React.FC<MiniCardAudioOptions> = ...

    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.

    Configuration options for the MiniCardAudio component.

    Custom styles for the card container.

    The name displayed on the audio card.

    Toggles the waveform animation display.

    Position of the overlay on the card.

    Color of the waveform bars.

    Color of the displayed name text.

    URI for the background image.

    Determines if the image should have rounded corners.

    Custom styles for the background image.

    The MiniCardAudio component.

    import 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;