mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
f7cbd56d8e
Summary: This way `UIImplementation` can hold on to it and use it outside of calls from the `UIManagerModule`. Reviewed By: lexs Differential Revision: D3899774 fbshipit-source-id: 01e4956c4540bcdf30774a3f40a625e934714ee9
27 lines
860 B
Java
27 lines
860 B
Java
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
package com.facebook.react.uimanager;
|
|
|
|
import java.util.List;
|
|
|
|
import com.facebook.react.bridge.ReactApplicationContext;
|
|
import com.facebook.react.uimanager.events.EventDispatcher;
|
|
|
|
/**
|
|
* Provides UIImplementation to use in {@link UIManagerModule}.
|
|
*/
|
|
public class UIImplementationProvider {
|
|
public UIImplementation createUIImplementation(
|
|
ReactApplicationContext reactContext,
|
|
List<ViewManager> viewManagers,
|
|
EventDispatcher eventDispatcher) {
|
|
return new UIImplementation(reactContext, viewManagers, eventDispatcher);
|
|
}
|
|
}
|