/
githubmr
/
facebook-react-native
Обзор
Документация
Войти
/
githubmr
/
facebook-react-native
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/react-native/React/Fabric/Mounting/ComponentViews/ScrollView/RCTVirtualViewContainerState.h
25 строк
693 B
Luna Wei
VirtualViewExperimental on iOS (#52852)
08 авг 2025, 21:12
08 авг 2025, 21:12
b3f397f
Код
Авторство
О чём код?
/* * 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 <Foundation/Foundation.h> #import "RCTVirtualViewProtocol.h" @class RCTScrollViewComponentView; NS_ASSUME_NONNULL_BEGIN @interface RCTVirtualViewContainerState : NSObject - (instancetype)init NS_UNAVAILABLE; - (instancetype)new NS_UNAVAILABLE; - (instancetype)initWithScrollView:(RCTScrollViewComponentView *)scrollView NS_DESIGNATED_INITIALIZER; - (void)onChange:(id<RCTVirtualViewProtocol>)virtualView; - (void)remove:(id<RCTVirtualViewProtocol>)virtualView; @end NS_ASSUME_NONNULL_END