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>
16 lines
650 B
C++
16 lines
650 B
C++
#pragma once
|
|
#include "LineViewManager.g.h"
|
|
#include "RenderableViewManager.h"
|
|
|
|
namespace winrt::RNSVG::implementation {
|
|
struct LineViewManager : LineViewManagerT<LineViewManager, RNSVG::implementation::RenderableViewManager> {
|
|
LineViewManager();
|
|
|
|
// IViewManagerWithNativeProperties
|
|
Windows::Foundation::Collections::IMapView<hstring, Microsoft::ReactNative::ViewManagerPropertyType> NativeProps();
|
|
};
|
|
} // namespace winrt::RNSVG::implementation
|
|
namespace winrt::RNSVG::factory_implementation {
|
|
struct LineViewManager : LineViewManagerT<LineViewManager, implementation::LineViewManager> {};
|
|
} // namespace winrt::RNSVG::factory_implementation
|