mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-20 14:05:09 +00:00
Implement basic support for Pattern element
This commit is contained in:
21
ios/RNSVGPattern.h
Normal file
21
ios/RNSVGPattern.h
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
#import "RNSVGGroup.h"
|
||||
|
||||
@interface RNSVGPattern : RNSVGGroup
|
||||
|
||||
@property (nonatomic, strong) NSString *x;
|
||||
@property (nonatomic, strong) NSString *y;
|
||||
@property (nonatomic, strong) NSString *patternwidth;
|
||||
@property (nonatomic, strong) NSString *patternheight;
|
||||
@property (nonatomic, assign)RNSVGUnits patternUnits;
|
||||
@property (nonatomic, assign)RNSVGUnits patternContentUnits;
|
||||
@property (nonatomic, assign)CGAffineTransform patternTransform;
|
||||
|
||||
@property (nonatomic, assign) CGFloat minX;
|
||||
@property (nonatomic, assign) CGFloat minY;
|
||||
@property (nonatomic, assign) CGFloat vbWidth;
|
||||
@property (nonatomic, assign) CGFloat vbHeight;
|
||||
@property (nonatomic, strong) NSString *align;
|
||||
@property (nonatomic, assign) RNSVGVBMOS meetOrSlice;
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user