Configuration for an expanded plugin component in the player, that contains a bottom component and a side component.

interface RNExpandedPluginComponent {
    bottom: RNPluginComponent;
    buttonIconUrl?: string;
    buttonTTSIdentifier?: string;
    side: RNPluginComponent;
}

Properties

Plugin component to display at the bottom of the player.

buttonIconUrl?: string

URL of the icon to display on the plugin button.

buttonTTSIdentifier?: string

Text-to-speech identifier for accessibility.

Plugin component to display on the side of the player.