[NUI] Update Tizen 7.0 UX
authorJiyun Yang <ji.yang@samsung.com>
Mon, 20 Feb 2023 05:12:46 +0000 (14:12 +0900)
committerJiyun Yang <ji.yang@samsung.com>
Tue, 21 Feb 2023 06:48:13 +0000 (15:48 +0900)
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
12 files changed:
src/Tizen.NUI.Components/Theme/DefaultThemeCommon.cs
src/Tizen.NUI.Components/res/IoT_check_off_f.png
src/Tizen.NUI.Components/res/IoT_check_off_p.png [deleted file]
src/Tizen.NUI.Components/res/IoT_check_on.png
src/Tizen.NUI.Components/res/IoT_check_on_d.png
src/Tizen.NUI.Components/res/IoT_check_on_f.png
src/Tizen.NUI.Components/res/IoT_check_on_p.png [deleted file]
src/Tizen.NUI.Components/res/IoT_switch_thumb.png
src/Tizen.NUI.Components/res/IoT_switch_thumb_d.png [deleted file]
src/Tizen.NUI.Components/res/IoT_switch_thumb_s.png
src/Tizen.NUI.Components/res/IoT_switch_thumb_sf.png [deleted file]
src/Tizen.NUI.Components/res/IoT_switch_thumb_sp.png [deleted file]

index b43a8d3..aa836dc 100755 (executable)
@@ -136,7 +136,12 @@ namespace Tizen.NUI.Components
                 },
                 Text = new TextLabelStyle()
                 {
-                    TextColor = new Color("#090E21"),
+                    TextColor = new Selector<Color>()
+                    {
+                        Normal = new Color("#090E21"),
+                        Selected = new Color("#FF6200"),
+                        Disabled = new Color("#CACACA"),
+                    },
                     PixelSize = 24,
                 }
             });
@@ -231,7 +236,12 @@ namespace Tizen.NUI.Components
                 },
                 Text = new TextLabelStyle()
                 {
-                    TextColor = new Color("#090E21"),
+                    TextColor = new Selector<Color>()
+                    {
+                        Normal = new Color("#090E21"),
+                        Selected = new Color("#FF6200"),
+                        Disabled = new Color("#CACACA"),
+                    },
                     PixelSize = 24,
                 }
             });
@@ -327,7 +337,11 @@ namespace Tizen.NUI.Components
                 },
                 Text = new TextLabelStyle()
                 {
-                    TextColor = new Color("#090E21"),
+                    TextColor = new Selector<Color>()
+                    {
+                        Normal = new Color("#090E21"),
+                        Disabled = new Color("#CACACA"),
+                    },
                     PixelSize = 24,
                 }
             });
@@ -347,7 +361,7 @@ namespace Tizen.NUI.Components
                     Normal = FrameworkInformation.ResourcePath + "nui_component_default_pagination_normal_dot.png",
                     Selected = FrameworkInformation.ResourcePath + "nui_component_default_pagination_focus_dot.png",
                 },
-                IndicatorSize = new Size(64, 8),
+                IndicatorSize = new Size(80, 24),
                 IndicatorSpacing = 16,
             });
 
@@ -641,11 +655,9 @@ namespace Tizen.NUI.Components
                 TextSizeWithIcon = 16.0f,
                 BackgroundColor = new Selector<Color>()
                 {
-                    Normal = new Color("#FAFAFA"),
                     Selected = new Color("#FFE0CC"),
                     Pressed = new Color("#FFCAA8"),
-                    Focused = new Color("#FAFAFA"),
-                    Disabled = new Color("#FAFAFA"),
+                    Other = new Color("#FAFAFA"),
                 },
                 Text = new TextLabelStyle()
                 {
@@ -654,10 +666,8 @@ namespace Tizen.NUI.Components
                     TextColor = new Selector<Color>()
                     {
                         Normal = new Color("#090E21"),
-                        Selected = new Color("#FF6200"),
-                        Pressed = new Color("#FF6200"),
-                        Focused = new Color("#FF6200"),
                         Disabled = new Color("#CACACA"),
+                        Other = new Color("#FF6200"),
                     },
                     ThemeChangeSensitive = false,
                 },
@@ -667,10 +677,8 @@ namespace Tizen.NUI.Components
                     Color = new Selector<Color>()
                     {
                         Normal = new Color("#090E21"),
-                        Selected = new Color("#FF6200"),
-                        Pressed = new Color("#FF6200"),
-                        Focused = new Color("#FF6200"),
                         Disabled = new Color("#CACACA"),
+                        Other = new Color("#FF6200"),
                     },
                 },
             });
index d7153a0..adc2c38 100644 (file)
Binary files a/src/Tizen.NUI.Components/res/IoT_check_off_f.png and b/src/Tizen.NUI.Components/res/IoT_check_off_f.png differ
diff --git a/src/Tizen.NUI.Components/res/IoT_check_off_p.png b/src/Tizen.NUI.Components/res/IoT_check_off_p.png
deleted file mode 100644 (file)
index 14020e8..0000000
Binary files a/src/Tizen.NUI.Components/res/IoT_check_off_p.png and /dev/null differ
index 0c81fb3..75788cb 100644 (file)
Binary files a/src/Tizen.NUI.Components/res/IoT_check_on.png and b/src/Tizen.NUI.Components/res/IoT_check_on.png differ
index 6f4edce..10f7d70 100644 (file)
Binary files a/src/Tizen.NUI.Components/res/IoT_check_on_d.png and b/src/Tizen.NUI.Components/res/IoT_check_on_d.png differ
index 07c4f81..4b986e1 100644 (file)
Binary files a/src/Tizen.NUI.Components/res/IoT_check_on_f.png and b/src/Tizen.NUI.Components/res/IoT_check_on_f.png differ
diff --git a/src/Tizen.NUI.Components/res/IoT_check_on_p.png b/src/Tizen.NUI.Components/res/IoT_check_on_p.png
deleted file mode 100644 (file)
index 0c81fb3..0000000
Binary files a/src/Tizen.NUI.Components/res/IoT_check_on_p.png and /dev/null differ
index b529b60..0be8f0c 100644 (file)
Binary files a/src/Tizen.NUI.Components/res/IoT_switch_thumb.png and b/src/Tizen.NUI.Components/res/IoT_switch_thumb.png differ
diff --git a/src/Tizen.NUI.Components/res/IoT_switch_thumb_d.png b/src/Tizen.NUI.Components/res/IoT_switch_thumb_d.png
deleted file mode 100644 (file)
index dc20519..0000000
Binary files a/src/Tizen.NUI.Components/res/IoT_switch_thumb_d.png and /dev/null differ
index 068d518..ddf8bd8 100644 (file)
Binary files a/src/Tizen.NUI.Components/res/IoT_switch_thumb_s.png and b/src/Tizen.NUI.Components/res/IoT_switch_thumb_s.png differ
diff --git a/src/Tizen.NUI.Components/res/IoT_switch_thumb_sf.png b/src/Tizen.NUI.Components/res/IoT_switch_thumb_sf.png
deleted file mode 100644 (file)
index 068d518..0000000
Binary files a/src/Tizen.NUI.Components/res/IoT_switch_thumb_sf.png and /dev/null differ
diff --git a/src/Tizen.NUI.Components/res/IoT_switch_thumb_sp.png b/src/Tizen.NUI.Components/res/IoT_switch_thumb_sp.png
deleted file mode 100644 (file)
index 068d518..0000000
Binary files a/src/Tizen.NUI.Components/res/IoT_switch_thumb_sp.png and /dev/null differ