You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
426 B
15 lines
426 B
#pragma once
|
|
|
|
namespace winrt::RNScreens::implementation {
|
|
class ScreenStackHeaderConfig
|
|
: public winrt::Windows::UI::Xaml::Controls::StackPanelT<
|
|
ScreenStackHeaderConfig> {
|
|
public:
|
|
ScreenStackHeaderConfig(
|
|
winrt::Microsoft::ReactNative::IReactContext m_reactContext);
|
|
|
|
private:
|
|
winrt::Microsoft::ReactNative::IReactContext m_reactContext{nullptr};
|
|
};
|
|
} // namespace winrt::RNScreens::implementation
|