Example usage for com.facebook.react.views.scroll ReactScrollViewCommandHelper receiveCommand

List of usage examples for com.facebook.react.views.scroll ReactScrollViewCommandHelper receiveCommand

Introduction

In this page you can find the example usage for com.facebook.react.views.scroll ReactScrollViewCommandHelper receiveCommand.

Prototype

public static <T> void receiveCommand(ScrollCommandHandler<T> viewManager, T scrollView, String commandType,
            @Nullable ReadableArray args) 

Source Link

Usage

From source file:com.bottomsheetbehavior.ReactNestedScrollViewManager.java

License:Open Source License

@Override
public void receiveCommand(ReactNestedScrollView scrollView, int commandId, @Nullable ReadableArray args) {
    ReactScrollViewCommandHelper.receiveCommand(this, scrollView, commandId, args);
}

From source file:com.zulipmobile.AnchorScrollViewManager.java

License:Open Source License

@Override
public void receiveCommand(AnchorScrollView scrollView, int commandId, @Nullable ReadableArray args) {
    ReactScrollViewCommandHelper.receiveCommand(this, scrollView, commandId, args);
}