mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-06 07:06:11 +00:00
refactor: rename ios/ source folder to apple/
This commit is contained in:
47
apple/RNSVGRenderable.h
Normal file
47
apple/RNSVGRenderable.h
Normal file
@@ -0,0 +1,47 @@
|
||||
/**
|
||||
* Copyright (c) 2015-present, Horcrux.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This source code is licensed under the MIT-style license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
#import "RNSVGUIKit.h"
|
||||
|
||||
#import "RNSVGBrush.h"
|
||||
#import "RNSVGCGFCRule.h"
|
||||
#import "RNSVGNode.h"
|
||||
#import "RNSVGLength.h"
|
||||
#import "RNSVGVectorEffect.h"
|
||||
|
||||
@interface RNSVGRenderable : RNSVGNode
|
||||
|
||||
@property (class) RNSVGRenderable *contextElement;
|
||||
@property (nonatomic, strong) RNSVGBrush *fill;
|
||||
@property (nonatomic, assign) CGFloat fillOpacity;
|
||||
@property (nonatomic, assign) RNSVGCGFCRule fillRule;
|
||||
@property (nonatomic, strong) RNSVGBrush *stroke;
|
||||
@property (nonatomic, assign) CGFloat strokeOpacity;
|
||||
@property (nonatomic, strong) RNSVGLength *strokeWidth;
|
||||
@property (nonatomic, assign) CGLineCap strokeLinecap;
|
||||
@property (nonatomic, assign) CGLineJoin strokeLinejoin;
|
||||
@property (nonatomic, assign) CGFloat strokeMiterlimit;
|
||||
@property (nonatomic, strong) NSArray<RNSVGLength *> *strokeDasharray;
|
||||
@property (nonatomic, assign) CGFloat strokeDashoffset;
|
||||
@property (nonatomic, assign) RNSVGVectorEffect vectorEffect;
|
||||
@property (nonatomic, copy) NSArray<NSString *> *propList;
|
||||
@property (nonatomic, assign) CGPathRef hitArea;
|
||||
|
||||
- (RNSVGColor *)defaultColor;
|
||||
|
||||
- (void)setHitArea:(CGPathRef)path;
|
||||
|
||||
- (NSArray<NSString *> *)getAttributeList;
|
||||
|
||||
- (void)mergeProperties:(__kindof RNSVGRenderable *)target;
|
||||
|
||||
- (void)resetProperties;
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user