mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 17:15:54 +00:00
00f44248b3
Summary: RCTFabricSurface was reimplemented as separate class which does not rely on (old) RCTUIManager and delegate some functionality (which must be coordinated between Surface instances and Scheduler) to RCTSurfacePresenter. Reviewed By: mdvacca Differential Revision: D7526404 fbshipit-source-id: e8c38261bc489fd6066ba29a829cd8f623c26217
20 lines
605 B
Plaintext
20 lines
605 B
Plaintext
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import "RCTFabricSurfaceHostingProxyRootView.h"
|
|
|
|
#import "RCTFabricSurface.h"
|
|
|
|
@implementation RCTFabricSurfaceHostingProxyRootView
|
|
|
|
- (RCTSurface *)createSurfaceWithBridge:(RCTBridge *)bridge moduleName:(NSString *)moduleName initialProperties:(NSDictionary *)initialProperties
|
|
{
|
|
return (RCTSurface *)[[RCTFabricSurface alloc] initWithBridge:bridge moduleName:moduleName initialProperties:initialProperties];
|
|
}
|
|
|
|
@end
|