mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-21 14:25:14 +00:00
* Implement correct transform parser * Implement getAlignmentBaseline and getBaselineShift in ios. Add comments to glyphcontext and align with android. Implement correct isWordSeparator predicate. Cleanup GlyphContext j2objc remnants. * Fix getBaselineShift bugs and font data invalidation.
25 lines
447 B
Objective-C
25 lines
447 B
Objective-C
/**
|
|
* Copyright (c) 2015-present, Horcrux.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the MIT-style license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import "RNSVGGroupManager.h"
|
|
#import "RNSVGCGFCRule.h"
|
|
#import "RNSVGGroup.h"
|
|
|
|
@implementation RNSVGGroupManager
|
|
|
|
RCT_EXPORT_MODULE()
|
|
|
|
- (RNSVGNode *)node
|
|
{
|
|
return [RNSVGGroup new];
|
|
}
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(font, NSDictionary)
|
|
|
|
@end
|