23 lines
580 B
C++
23 lines
580 B
C++
#include "pch.h"
|
|
#include "ModalScreenViewManager.h"
|
|
#include "JSValueXaml.h"
|
|
#include "NativeModules.h"
|
|
|
|
namespace winrt {
|
|
using namespace Microsoft::ReactNative;
|
|
using namespace Windows::Foundation;
|
|
using namespace Windows::Foundation::Collections;
|
|
using namespace Windows::UI;
|
|
using namespace Windows::UI::Xaml;
|
|
using namespace Windows::UI::Xaml::Controls;
|
|
} // namespace winrt
|
|
|
|
namespace winrt::RNScreens::implementation {
|
|
// IViewManager
|
|
winrt::hstring ModalScreenViewManager::Name() noexcept {
|
|
return L"RNSModalScreen";
|
|
}
|
|
|
|
|
|
} // namespace winrt::RNScreens::implementation
|