Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Latest commit

 

History

History
34 lines (27 loc) · 1.41 KB

ScreenSharingPresentationBox.md

File metadata and controls

34 lines (27 loc) · 1.41 KB

ScreenSharingPresentationBox

The ScreenSharingPresentationBox component is responsible for presenting screen share data. By default it takes 100% of parent width and height.

Props

Name Type Default Description
customFallbackContent? React.ReactNode - Custom fallback when is problem with stream or some error exists.
fallbackText string - Text which will be displayed in default fallback.
fallbackButtonText? string - Text which will be displayed in default fallback button.
backgroundColor? ColorKey "grey.800" Background color of container.
testID? string - Unique e2e identifier.

Examples

React

const customFallbackContent = (
  <Space>
    <Text>Custom Fallback Content</Text>
  </Space>
);

return (
  <ScreenSharingPresentationBox
    customFallbackContent={customFallbackContent}
    fallbackText="Screen share error"
    fallbackButtonText="Try again"
    testID="ScreenSharingPresentationBox"
  />
);