mirror of
https://github.com/zoriya/react-native-svg.git
synced 2026-06-02 14:50:43 +00:00
Port new GlyphContext, FontData, enums, props, Bezier and text rendering
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
#if !defined (TextDecoration_)
|
||||
#define TextDecoration_
|
||||
|
||||
NS_ENUM(NSInteger, TextDecoration) {
|
||||
TextDecorationNone,
|
||||
TextDecorationUnderline,
|
||||
TextDecorationOverline,
|
||||
TextDecorationLineThrough,
|
||||
TextDecorationBlink,
|
||||
TextDecorationDEFAULT = TextDecorationNone,
|
||||
};
|
||||
|
||||
static NSString* const TextDecorationStrings[] = {@"None", @"Underline", @"Overline", @"LineThrough", @"Blink", nil};
|
||||
|
||||
NSString* TextDecorationToString( enum TextDecoration fw );
|
||||
|
||||
enum TextDecoration TextDecorationFromString( NSString* s );
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user