14 lines
407 B
C
14 lines
407 B
C
|
#import <React/RCTView.h>
|
||
|
|
||
|
@interface BVLinearGradient : RCTView
|
||
|
|
||
|
@property (nullable, nonatomic, copy) NSArray<UIColor *> *colors;
|
||
|
@property (nullable, nonatomic, copy) NSArray<NSNumber *> *locations;
|
||
|
@property (nonatomic) CGPoint startPoint;
|
||
|
@property (nonatomic) CGPoint endPoint;
|
||
|
@property (nonatomic) BOOL useAngle;
|
||
|
@property (nonatomic) CGPoint angleCenter;
|
||
|
@property (nonatomic) CGFloat angle;
|
||
|
|
||
|
@end
|