chore: rename setPlayerStatus to setPlayerPauseState

This commit is contained in:
KrzysztofMoch
2023-09-21 07:25:21 +02:00
parent 01ce04c7ac
commit 421712825b
7 changed files with 10 additions and 29 deletions

View File

@@ -20,7 +20,7 @@ public class VideoManagerModule extends ReactContextBaseJavaModule {
}
@ReactMethod
public void setPlayerStatus(Boolean shouldPlay, int reactTag) {
public void setPlayerPauseState(Boolean shouldPlay, int reactTag) {
UIManagerModule uiManager = getReactApplicationContext().getNativeModule(UIManagerModule.class);
uiManager.prependUIBlock(manager -> {
View view = manager.resolveView(reactTag);