We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f10c1e3 commit ad3d8bdCopy full SHA for ad3d8bd
windows/RNSplashScreen/RNSplashScreen.cpp
@@ -57,6 +57,8 @@ void winrt::RNSplashScreen::RNSplashScreen::Show() noexcept
57
if (control != nullptr)
58
{
59
control.Opacity(1);
60
+ control.IsHitTestVisible(true);
61
+ control.IsEnabled(true);
62
}
63
64
@@ -66,5 +68,7 @@ void winrt::RNSplashScreen::RNSplashScreen::Hide() noexcept
66
68
67
69
70
control.Opacity(0);
71
+ control.IsHitTestVisible(false);
72
+ control.IsEnabled(false);
73
74
0 commit comments