mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-06 07:06:11 +00:00
Added support for RNW 74. Bumped windows Example to 74. Updated README.md to remove instructions on how to import Win2D since we no longer use it.
17 lines
641 B
C++
17 lines
641 B
C++
#pragma once
|
|
#include "MaskViewManager.g.h"
|
|
#include "GroupViewManager.h"
|
|
|
|
namespace winrt::RNSVG::implementation {
|
|
struct MaskViewManager : MaskViewManagerT<MaskViewManager, RNSVG::implementation::GroupViewManager> {
|
|
MaskViewManager();
|
|
|
|
// IViewManagerWithNativeProperties
|
|
Windows::Foundation::Collections::IMapView<hstring, Microsoft::ReactNative::ViewManagerPropertyType> NativeProps();
|
|
};
|
|
} // namespace winrt::RNSVG::implementation
|
|
|
|
namespace winrt::RNSVG::factory_implementation {
|
|
struct MaskViewManager : MaskViewManagerT<MaskViewManager, implementation::MaskViewManager> {};
|
|
} // namespace winrt::RNSVG::factory_implementation
|