ComponentsDisplay Components

Title

A themed text component for displaying headings, labels, or titles inside the video player UI.

Usage

import { Title } from 'react-native-video-toolkit';

export function Example() {
  return <Title text="Playback Settings" />;
}

Props

PropTypeRequiredDefaultDescription
textstringYesThe string to display.
styleStyleProp<TextStyle>NoOptional override styles (merged with theme + defaults).

Notes

When to Use

  • Use Title for primary headings or main labels within the video player UI, such as:
    • Video titles

On this page