Files
react-native-svg/ios/Text/TextPathMethod.h
2017-08-24 12:42:18 +03:00

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