/
githubmr
/
facebook-react-native
Обзор
Документация
Войти
/
githubmr
/
facebook-react-native
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/react-native/ReactCxxPlatform/react/coremodules/DeviceInfoModule.cpp
25 строк
607 B
Andrew Datsenko
Move rncxx coremodules
16 апр 2025, 19:53
16 апр 2025, 19:53
929099f
Код
Авторство
О чём код?
/* * 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. */ #include "DeviceInfoModule.h" namespace facebook::react { DeviceInfoConstants DeviceInfoModule::getConstants(jsi::Runtime& /*rt*/) { // TODO: Wire this to come from the actual app // size (T161837708) return DeviceInfoConstants{ .Dimensions = {.window = DisplayMetrics{ 1280, 720, }}, }; } } // namespace facebook::react