mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-21 06:15:15 +00:00
Port new GlyphContext, FontData, enums, props, Bezier and text rendering
This commit is contained in:
18
ios/Text/TextPathMethod.h
Normal file
18
ios/Text/TextPathMethod.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
#if !defined (TextPathMethod_)
|
||||
#define TextPathMethod_
|
||||
|
||||
NS_ENUM(NSInteger, TextPathMethod) {
|
||||
TextPathMethodAlign,
|
||||
TextPathMethodStretch,
|
||||
TextPathMethodDEFAULT = TextPathMethodAlign,
|
||||
};
|
||||
|
||||
static NSString* const TextPathMethodStrings[] = {@"align", @"stretch", nil};
|
||||
|
||||
NSString* TextPathMethodToString( enum TextPathMethod fw );
|
||||
|
||||
enum TextPathMethod TextPathMethodFromString( NSString* s );
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user