Fixed DisplayAlert message color issue
authorchungryeol lim <cdark.lim@samsung.com>
Thu, 19 Jan 2017 10:04:47 +0000 (19:04 +0900)
committerKangho Hur <kangho.hur@samsung.com>
Mon, 24 Apr 2017 04:36:50 +0000 (13:36 +0900)
 - Change the default color of message color to black

Change-Id: Id9b7f74c0ecdc222bb46a9ecc6e4464cb6601cc7
Signed-off-by: chungryeol lim <cdark.lim@samsung.com>
Xamarin.Forms.Platform.Tizen/FormsApplication.cs

index 32ef3c3..fe8c4fd 100644 (file)
@@ -169,7 +169,7 @@ namespace Xamarin.Forms.Platform.Tizen
                                        alert.Title = arguments.Title;
                                        var label = new ELabel(alert)
                                        {
-                                               Text = "<span font_size=30 >" + arguments.Message + "<\\span>",
+                                               Text = "<span font_size=30 color=#000000>" + arguments.Message + "<\\span>",
                                        };
                                        label.Show();