mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-06 07:06:11 +00:00
Adds Windows support. Co-authored-by: Adam Gleitman <adam.gleitman@gmail.com> Co-authored-by: REDMOND\agnel <agnel@microsoft.com>
17 lines
642 B
C++
17 lines
642 B
C++
#pragma once
|
|
#include "UseViewManager.g.h"
|
|
#include "RenderableViewManager.h"
|
|
|
|
namespace winrt::RNSVG::implementation {
|
|
struct UseViewManager : UseViewManagerT<UseViewManager, RNSVG::implementation::RenderableViewManager> {
|
|
UseViewManager();
|
|
|
|
// IViewManagerWithNativeProperties
|
|
Windows::Foundation::Collections::IMapView<hstring, Microsoft::ReactNative::ViewManagerPropertyType> NativeProps();
|
|
};
|
|
} // namespace winrt::RNSVG::implementation
|
|
|
|
namespace winrt::RNSVG::factory_implementation {
|
|
struct UseViewManager : UseViewManagerT<UseViewManager, implementation::UseViewManager> {};
|
|
} // namespace winrt::RNSVG::factory_implementation
|