diff --git a/src/wp/SplashScreen.cs b/src/wp/SplashScreen.cs index da519d5..4d3545b 100644 --- a/src/wp/SplashScreen.cs +++ b/src/wp/SplashScreen.cs @@ -95,13 +95,13 @@ namespace WPCordovaClassLib.Cordova.Commands public void show(string options = null) { - if (popup.IsOpen) - { - return; - } - Deployment.Current.Dispatcher.BeginInvoke(() => { + if (popup.IsOpen) + { + return; + } + popup.Child.Opacity = 0; Storyboard story = new Storyboard(); @@ -137,13 +137,13 @@ namespace WPCordovaClassLib.Cordova.Commands public void hide(string options = null) { - if (!popup.IsOpen) - { - return; - } - Deployment.Current.Dispatcher.BeginInvoke(() => { + if (!popup.IsOpen) + { + return; + } + popup.Child.Opacity = 1.0; Storyboard story = new Storyboard();