Files
react-native-svg/windows/RNSVG/MaskViewManager.h
Marlene Cota 2514ac4fdf feat(windows): add support for 74 and bump Example (#2315)
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.
2024-07-02 09:34:04 +02:00

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