44 lines
1.3 KiB
C++
44 lines
1.3 KiB
C++
#include "pch.h"
|
|
#include "ScreenStackHeaderConfig.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 {
|
|
ScreenStackHeaderConfig::ScreenStackHeaderConfig(
|
|
winrt::Microsoft::ReactNative::IReactContext reactContext)
|
|
: m_reactContext(reactContext),
|
|
m_children(
|
|
{winrt::single_threaded_vector<Windows::UI::Xaml::UIElement>()}) {}
|
|
|
|
void ScreenStackHeaderConfig::addView(winrt::Windows::UI::Xaml::UIElement element) {
|
|
Children().Append(element);
|
|
}
|
|
|
|
void ScreenStackHeaderConfig::removeAllChildren() {
|
|
Children().Clear();
|
|
}
|
|
|
|
void ScreenStackHeaderConfig::removeChildAt(int64_t index) {
|
|
Children().RemoveAt(static_cast<uint32_t>(index));
|
|
}
|
|
|
|
void ScreenStackHeaderConfig::replaceChild(
|
|
winrt::Windows::UI::Xaml::UIElement oldChild,
|
|
winrt::Windows::UI::Xaml::UIElement newChild) {
|
|
uint32_t index;
|
|
if (!Children().IndexOf(oldChild, index))
|
|
return;
|
|
|
|
Children().SetAt(index, newChild);
|
|
}
|
|
} // namespace winrt::RNScreens::implementation
|