refactor: rename ios/ source folder to apple/

This commit is contained in:
Adam Gleitman
2020-11-25 16:31:39 -08:00
parent 839ccd1908
commit a56d22a985
139 changed files with 2 additions and 2 deletions
+49
View File
@@ -0,0 +1,49 @@
#import <React/UIView+React.h>
#import <CoreText/CoreText.h>
#import "RNSVGFontData.h"
@class RNSVGText;
@class RNSVGGroup;
@class RNSVGGlyphContext;
@interface RNSVGGlyphContext : NSObject
- (CTFontRef)getGlyphFont;
- (instancetype)initWithWidth:(CGFloat)width
height:(CGFloat)height;
- (RNSVGFontData *)getFont;
- (CGFloat)getFontSize;
- (CGFloat)getHeight;
- (CGFloat)getWidth;
- (CGFloat)nextDeltaX;
- (CGFloat)nextDeltaY;
- (CGFloat)nextRotation;
- (CGFloat)nextXWithDouble:(CGFloat)advance;
- (CGFloat)nextY;
- (void)popContext;
- (void)pushContext:(RNSVGText*)node
font:(NSDictionary*)font
x:(NSArray<RNSVGLength*>*)x
y:(NSArray<RNSVGLength*>*)y
deltaX:(NSArray<RNSVGLength*>*)deltaX
deltaY:(NSArray<RNSVGLength*>*)deltaY
rotate:(NSArray<RNSVGLength*>*)rotate;
- (void)pushContext:(RNSVGGroup*)node
font:(NSDictionary *)font;
- (NSArray*)getFontContext;
@end