mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-20 14:05:09 +00:00
20 lines
414 B
Objective-C
20 lines
414 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
#ifndef TextAnchor_h
|
|
#define TextAnchor_h
|
|
|
|
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
|