interface AudioCardOptions {
    controlUserMedia?: ((options: ControlMediaOptions) => Promise<void>);
    customStyle?: StyleProp<ViewStyle>;
    name: string;
    barColor?: string;
    textColor?: string;
    imageSource?: string;
    roundedImage?: boolean;
    imageStyle?: StyleProp<ImageStyle>;
    showControls?: boolean;
    showInfo?: boolean;
    videoInfoComponent?: ReactNode;
    videoControlsComponent?: ReactNode;
    controlsPosition?: ControlsPosition;
    infoPosition?: InfoPosition;
    participant: Participant;
    backgroundColor?: string;
    audioDecibels?: AudioDecibels;
    parameters: AudioCardParameters;
}

Properties

controlUserMedia?: ((options: ControlMediaOptions) => Promise<void>)
customStyle?: StyleProp<ViewStyle>
name: string
barColor?: string
textColor?: string
imageSource?: string
roundedImage?: boolean
imageStyle?: StyleProp<ImageStyle>
showControls?: boolean
showInfo?: boolean
videoInfoComponent?: ReactNode
videoControlsComponent?: ReactNode
controlsPosition?: ControlsPosition
infoPosition?: InfoPosition
participant: Participant
backgroundColor?: string
audioDecibels?: AudioDecibels