mirror of
https://github.com/zoriya/react-native-svg.git
synced 2026-05-26 04:19:17 +00:00
Port new GlyphContext, FontData, enums, props, Bezier and text rendering
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
#import "AlignmentBaseline.h"
|
||||
|
||||
NSString* AlignmentBaselineToString( enum AlignmentBaseline fw )
|
||||
{
|
||||
return AlignmentBaselineStrings[fw];
|
||||
}
|
||||
|
||||
enum AlignmentBaseline AlignmentBaselineFromString( NSString* s )
|
||||
{
|
||||
NSInteger i;
|
||||
NSString* fw;
|
||||
for (i = 0; fw = AlignmentBaselineStrings[i], fw != nil; i++) {
|
||||
if ([fw isEqualToString:s]) {
|
||||
return i;
|
||||
}
|
||||
}
|
||||
return AlignmentBaselineDEFAULT;
|
||||
}
|
||||
Reference in New Issue
Block a user