/
githubmr
/
facebook-react-native
Обзор
Документация
Войти
/
githubmr
/
facebook-react-native
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/react-native/ReactCommon/react/renderer/components/modal/ModalHostViewUtils.mm
20 строк
490 B
generatedunixname89002005287564
Fix CQS signal modernize-use-designated-initializers in xplat/js/react-native-github/packages (#53352)
19 авг 2025, 19:53
19 авг 2025, 19:53
defefb1
Код
Авторство
О чём код?
/* * 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. */ #import "ModalHostViewUtils.h" #import <Foundation/Foundation.h> #import <React/RCTUtils.h> namespace facebook::react { Size ModalHostViewScreenSize(void) { CGSize screenSize = RCTScreenSize(); return {.width = screenSize.width, .height = screenSize.height}; } } // namespace facebook::react