use of com.reactnativenavigation.options.OrientationOptions in project react-native-navigation by wix.
the class StackPresenter method applyOrientation.
public void applyOrientation(OrientationOptions options) {
OrientationOptions withDefaultOptions = options.copy().mergeWithDefault(defaultOptions.layout.orientation);
((Activity) topBar.getContext()).setRequestedOrientation(withDefaultOptions.getValue());
}
Aggregations