mirror of
https://github.com/zoriya/react-native-svg.git
synced 2026-05-31 13:52:58 +00:00
Port new GlyphContext, FontData, enums, props, Bezier and text rendering
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
#import "TextAnchor.h"
|
||||
|
||||
NSString* TextAnchorToString( enum TextAnchor fw )
|
||||
{
|
||||
return TextAnchorStrings[fw];
|
||||
}
|
||||
|
||||
enum TextAnchor TextAnchorFromString( NSString* s )
|
||||
{
|
||||
NSInteger i;
|
||||
NSString* fw;
|
||||
for (i = 0; fw = TextAnchorStrings[i], fw != nil; i++) {
|
||||
if ([fw isEqualToString:s]) {
|
||||
return i;
|
||||
}
|
||||
}
|
||||
return TextAnchorDEFAULT;
|
||||
}
|
||||
Reference in New Issue
Block a user