Fix Span's markup text tag
authorKangho Hur <kangho.hur@samsung.com>
Tue, 24 Jan 2017 00:10:19 +0000 (09:10 +0900)
committerKangho Hur <kangho.hur@samsung.com>
Mon, 10 Jul 2017 02:11:18 +0000 (11:11 +0900)
Change-Id: Ib667d444c4bfe4726298c3befde00d9f093ff107

Xamarin.Forms.Platform.Tizen/Native/Span.cs
Xamarin.Forms.Platform.Tizen/Renderers/LabelRenderer.cs

index f0932f4..4a5daf3 100644 (file)
@@ -137,7 +137,7 @@ namespace Xamarin.Forms.Platform.Tizen.Native
 
                        sb.Append(GetDecoratedText());
 
-                       sb.Append("</>");
+                       sb.Append("</span>");
 
                        return sb.ToString();
                }
index 1fdd7fb..5aa8f78 100644 (file)
@@ -65,8 +65,6 @@ namespace Xamarin.Forms.Platform.Tizen
                                nativeSpan.VerticalTextAlignment = Control.VerticalTextAlignment;
                                nativeSpan.ForegroundColor = span.ForegroundColor.ToNative();
                                nativeSpan.BackgroundColor = span.BackgroundColor.ToNative();
-
-
                                nativeString.Spans.Add(nativeSpan);
                        }