/
githubmr
/
facebook-react-native
Обзор
Документация
Войти
/
githubmr
/
facebook-react-native
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/react-native/ReactCxxPlatform/react/devsupport/DevLoadingViewModule.h
39 строк
909 B
Nick Lefever
Back out "Use uint32_t as internal Color representation" (#53622)
06 сен 2025, 06:37
06 сен 2025, 06:37
02e3a99
Код
Авторство
О чём код?
/* * 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. */ #pragma once #include "IDevUIDelegate.h" #include <FBReactNativeSpec/FBReactNativeSpecJSI.h> #include <jsi/jsi.h> #include <optional> namespace facebook::react { class DevLoadingViewModule : public NativeDevLoadingViewCxxSpec<DevLoadingViewModule> { public: DevLoadingViewModule( std::shared_ptr<CallInvoker> jsInvoker, std::weak_ptr<IDevUIDelegate> devUIDelegate); ~DevLoadingViewModule() override; void showMessage( jsi::Runtime& rt, const std::string& message, std::optional<int32_t> textColor, std::optional<int32_t> backgroundColor); void hide(jsi::Runtime& rt); private: std::weak_ptr<IDevUIDelegate> devUIDelegate_; }; } // namespace facebook::react