mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-20 22:05:14 +00:00
Port new GlyphContext, FontData, enums, props, Bezier and text rendering
This commit is contained in:
18
ios/Text/TextPathMidLine.h
Normal file
18
ios/Text/TextPathMidLine.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
#if !defined (TextPathMidLine_)
|
||||
#define TextPathMidLine_
|
||||
|
||||
NS_ENUM(NSInteger, TextPathMidLine) {
|
||||
TextPathMidLineSharp,
|
||||
TextPathMidLineSmooth,
|
||||
TextPathMidLineDEFAULT = TextPathMidLineSharp,
|
||||
};
|
||||
|
||||
static NSString* const TextPathMidLineStrings[] = {@"sharp", @"smooth", nil};
|
||||
|
||||
NSString* TextPathMidLineToString( enum TextPathMidLine fw );
|
||||
|
||||
enum TextPathMidLine TextPathMidLineFromString( NSString* s );
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user