Correct the border and background properties of forget button 22/298922/2
authorManika Shrivastava <manika.sh@samsung.com>
Fri, 15 Sep 2023 07:07:37 +0000 (12:37 +0530)
committerManika Shrivastava <manika.sh@samsung.com>
Fri, 22 Sep 2023 09:06:37 +0000 (14:36 +0530)
Change-Id: I025e11323ff39c6ba5bbbd9ecabafef20e37de9d
Signed-off-by: Manika Shrivastava <manika.sh@samsung.com>
SettingWiFi/SettingWiFi/view/InfoPage.cs

index a992e6efa3bc78098f67b1c7f2f646eb087f6e7d..d515d4a055cebaadbe2b9437e8e3e7da40a60347 100755 (executable)
@@ -40,6 +40,7 @@ namespace SettingWiFi
                 },
                 WidthSpecification = LayoutParamPolicies.MatchParent,
                 HeightSpecification = LayoutParamPolicies.MatchParent,
+                Padding = new Extents(0, 0, 0, 8),
             };
 
             mScrollableInfo = new ScrollableBase()
@@ -61,8 +62,12 @@ namespace SettingWiFi
             var forgetButton = new Button()
             {
                 Text = Resources.IDS_WIFI_SK_FORGET,
-                WidthSpecification = 300,
-                HeightSpecification = 80,
+                WidthSpecification = 252,
+                HeightSpecification = 48,
+                BackgroundColor = Color.White,
+                TextColor = new Color("#FF6200"),
+                BorderlineColor = new Color("#FF6200"),
+                BorderlineWidth = 2,
             };
 
             forgetButton.Clicked += OnForgetClicked;