summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/TizenPlatformServices.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen/TizenPlatformServices.cs')
-rw-r--r--Xamarin.Forms.Platform.Tizen/TizenPlatformServices.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/TizenPlatformServices.cs b/Xamarin.Forms.Platform.Tizen/TizenPlatformServices.cs
index f3a72d02..a34c2faa 100644
--- a/Xamarin.Forms.Platform.Tizen/TizenPlatformServices.cs
+++ b/Xamarin.Forms.Platform.Tizen/TizenPlatformServices.cs
@@ -50,15 +50,15 @@ namespace Xamarin.Forms.Platform.Tizen
public double GetNamedSize(NamedSize size, Type targetElementType, bool useOldSizes)
{
- double baseSize = 10;
- double baseSizeSpan = 2;
+ double baseSize = Forms.ConvertToDPFont(19);
+ double baseSizeSpan = 3;
// In case of TV profile The base named size sholud be lager than mobile profile
- if (Device.Idiom == TargetIdiom.TV)
+ if (Device.Idiom != TargetIdiom.Phone)
{
// TODO: These valuse should be updated when TV profile UX guideline released.
- baseSize = 60;
- baseSizeSpan = 5;
+ baseSize = 50;
+ baseSizeSpan = 12;
}
switch (size)