charliesbot / react-native-media-controls

A sweet UI component to manipulate your media. Strongly typed.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Accessibility Tap to Play issue

Manojkumar-Subramaniam opened this issue · comments

Please fix the issue at below line

https://github.com/charliesbot/react-native-media-controls/blob/main/src/Controls.tsx#L26

Current Code:
accessibilityLabel={PLAYER_STATES.PAUSED ? "Tap to Play" : "Tap to Pause"}

Suggested Fix:
accessibilityLabel={PLAYER_STATES.PAUSED === playerState ? "Tap to Play" : "Tap to Pause"}