Files
react-native-svg/ios/Text/TextPathMethod.h
T

19 lines
445 B
Objective-C

#import <Foundation/Foundation.h>
#ifndef TextPathMethod_h
#define TextPathMethod_h
typedef 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