Ignore TableView.SectionTitle if title is not set
authorKangho Hur <kangho.hur@samsung.com>
Thu, 29 Dec 2016 00:42:37 +0000 (09:42 +0900)
committerKangho Hur <kangho.hur@samsung.com>
Fri, 24 Mar 2017 04:18:58 +0000 (13:18 +0900)
Change-Id: If62b127517d7ca3be8cd979ec2ec7a875a91658e

Xamarin.Forms.Platform.Tizen/Native/TableView.cs

index 73388a8..2a77299 100644 (file)
@@ -25,7 +25,8 @@ namespace Xamarin.Forms.Platform.Tizen.Native
                        Clear();
                        foreach (TableSection ts in root)
                        {
-                               AddSectionTitle(ts.Title);
+                               if(!string.IsNullOrEmpty(ts.Title))
+                                       AddSectionTitle(ts.Title);
                                AddSource(ts);
                        }
                }