mirror of
https://github.com/zoriya/react-native-svg.git
synced 2026-05-27 20:45:10 +00:00
Port new GlyphContext, FontData, enums, props, Bezier and text rendering
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
#if !defined (TextPathSpacing_)
|
||||
#define TextPathSpacing_
|
||||
|
||||
NS_ENUM(NSInteger, TextPathSpacing) {
|
||||
TextPathSpacingAutoSpacing,
|
||||
TextPathSpacingExact,
|
||||
TextPathSpacingDEFAULT = TextPathSpacingAutoSpacing,
|
||||
};
|
||||
|
||||
static NSString* const TextPathSpacingStrings[] = {@"auto", @"exact", nil};
|
||||
|
||||
NSString* TextPathSpacingToString( enum TextPathSpacing fw );
|
||||
|
||||
enum TextPathSpacing TextPathSpacingFromString( NSString* s );
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user