UNPKG

407 Btext/x-cView Raw
1#import <React/RCTView.h>
2
3@interface BVLinearGradient : RCTView
4
5@property (nullable, nonatomic, copy) NSArray<UIColor *> *colors;
6@property (nullable, nonatomic, copy) NSArray<NSNumber *> *locations;
7@property (nonatomic) CGPoint startPoint;
8@property (nonatomic) CGPoint endPoint;
9@property (nonatomic) BOOL useAngle;
10@property (nonatomic) CGPoint angleCenter;
11@property (nonatomic) CGFloat angle;
12
13@end