mirror of
https://github.com/zoriya/react-native-svg.git
synced 2026-05-30 21:49:31 +00:00
Port new GlyphContext, FontData, enums, props, Bezier and text rendering
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
#if !defined (TextAnchor_)
|
||||
#define TextAnchor_
|
||||
|
||||
NS_ENUM(NSInteger, TextAnchor) {
|
||||
TextAnchorStart,
|
||||
TextAnchorMiddle,
|
||||
TextAnchorEnd,
|
||||
TextAnchorDEFAULT = TextAnchorStart,
|
||||
};
|
||||
|
||||
static NSString* const TextAnchorStrings[] = {@"start", @"middle", @"end", nil};
|
||||
|
||||
NSString* TextAnchorToString( enum TextAnchor fw );
|
||||
|
||||
enum TextAnchor TextAnchorFromString( NSString* s );
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user