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