/
githubmirror
/
react-native
Обзор
Документация
Войти
/
githubmirror
/
react-native
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/rn-tester/RNTester/SceneDelegate.h
24 строки
749 B
artus9033
Add SceneDelegate support (#57700)
11 авг 2026, 13:59
11 авг 2026, 13:59
7bfe32f
Код
Авторство
О чём код?
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #if __has_include(<React/RCTDefaultReactNativeFactoryDelegate.h>) #import <React/RCTDefaultReactNativeFactoryDelegate.h> #import <React/RCTReactNativeFactory.h> #else #import <RCTDefaultReactNativeFactoryDelegate.h> #import <RCTReactNativeFactory.h> #endif #import <UIKit/UIKit.h> @interface SceneDelegate : RCTDefaultReactNativeFactoryDelegate <UIWindowSceneDelegate> @property (nonatomic, strong, nullable) UIWindow *window; @property (nonatomic, strong, nullable) RCTReactNativeFactory *reactNativeFactory; - (NSDictionary *)prepareInitialProps; @end