mirror of
https://github.com/status-im/react-native-linear-gradient.git
synced 2026-08-30 22:01:13 +00:00
15 lines
302 B
Objective-C
15 lines
302 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
@interface BVLinearGradient : UIView {
|
|
CGFloat *_locations;
|
|
}
|
|
|
|
- (CGFloat *)locations;
|
|
- (void)setLocations:(NSArray *)colorStrings;
|
|
|
|
@property (nonatomic, retain) NSArray *colors;
|
|
@property (nonatomic, assign) CGPoint start;
|
|
@property (nonatomic, assign) CGPoint end;
|
|
|
|
@end
|