diff --git a/README.md b/README.md index 6cb3ee9..2323ece 100644 --- a/README.md +++ b/README.md @@ -37,13 +37,15 @@ Example usages: iOS -![ScreenShot](screenshot-ios-toast.png) +![ScreenShot](screenshots/screenshot-ios-toast.png) Android -![ScreenShot](screenshot-android-toast.png) +![ScreenShot](screenshots/screenshot-android-toast.png) -WP8 (will be added soon) +Windows Phone 8 + +![ScreenShot](screenshots/screenshot-wp8.jpg) ## 3. Installation @@ -143,6 +145,7 @@ For iOS most credits go to this excellent [Toast for iOS project by Charles Scal ## 6. CHANGELOG 2.0: WP8 support + 1.0: initial version supporting Android and iOS ## 7. License diff --git a/screenshot-android-toast.png b/screenshots/screenshot-android-toast.png similarity index 100% rename from screenshot-android-toast.png rename to screenshots/screenshot-android-toast.png diff --git a/screenshot-ios-toast.png b/screenshots/screenshot-ios-toast.png similarity index 100% rename from screenshot-ios-toast.png rename to screenshots/screenshot-ios-toast.png diff --git a/screenshots/screenshot-wp8.jpg b/screenshots/screenshot-wp8.jpg new file mode 100644 index 0000000..4ff8164 Binary files /dev/null and b/screenshots/screenshot-wp8.jpg differ diff --git a/src/wp8/Toast.cs b/src/wp8/Toast.cs index f0d887a..dd1c3d0 100644 --- a/src/wp8/Toast.cs +++ b/src/wp8/Toast.cs @@ -50,7 +50,7 @@ namespace WPCordovaClassLib.Cordova.Commands Border b = new Border(); b.CornerRadius = new CornerRadius(12); - b.Background = new SolidColorBrush(Color.FromArgb(180, 55, 55, 55)); + b.Background = new SolidColorBrush(Color.FromArgb(190, 55, 55, 55)); b.HorizontalAlignment = HorizontalAlignment.Center; Grid pgrid = new Grid(); @@ -91,7 +91,7 @@ namespace WPCordovaClassLib.Cordova.Commands grid.Children.Add(popup); popup.IsOpen = true; - int hideDelay = "long".Equals(duration) ? 5500 : 2500; + int hideDelay = "long".Equals(duration) ? 5500 : 2800; this.hidePopup(hideDelay); } }