mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
145110b8d4
Summary: Changelog: [internal] Add support or GIFs in Fabric. This reuses Paper's `RCTUIImageViewAnimated`. Reviewed By: fkgozali Differential Revision: D27115321 fbshipit-source-id: c512e395b5c71701b25abf745be74b51b21df5b2
25 lines
556 B
Objective-C
25 lines
556 B
Objective-C
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import <React/RCTImageResponseDelegate.h>
|
|
#import <React/RCTUIImageViewAnimated.h>
|
|
#import <React/RCTViewComponentView.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/**
|
|
* UIView class for root <Image> component.
|
|
*/
|
|
@interface RCTImageComponentView : RCTViewComponentView <RCTImageResponseDelegate> {
|
|
@protected
|
|
RCTUIImageViewAnimated *_imageView;
|
|
}
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|