mirror of
https://github.com/zoriya/react-native-svg.git
synced 2026-05-06 21:13:17 +00:00
# Summary Continuation of #2362 implementing `FeBlend` filter https://www.w3.org/TR/SVG11/filters.html#feBlendElement ## Test Plan Example app → Filters → `FeBlend` ## Compatibility | OS | Implemented | | ------- | :---------: | | iOS | ✅ | | macOS | ✅ _*_ | | Android | ✅ | | Web | ✅ |
19 lines
333 B
Plaintext
19 lines
333 B
Plaintext
#import "RNSVGFeBlendManager.h"
|
|
#import "RNSVGBlendMode.h"
|
|
#import "RNSVGFeBlend.h"
|
|
|
|
@implementation RNSVGFeBlendManager
|
|
|
|
RCT_EXPORT_MODULE()
|
|
|
|
- (RNSVGFeBlend *)node
|
|
{
|
|
return [RNSVGFeBlend new];
|
|
}
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(in1, NSString)
|
|
RCT_EXPORT_VIEW_PROPERTY(in2, NSString)
|
|
RCT_EXPORT_VIEW_PROPERTY(mode, RNSVGBlendMode)
|
|
|
|
@end
|