--- /dev/null
+<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
+<circle cx="14" cy="14" r="11" stroke="#17234D" stroke-width="2"/>
+<path d="M14 12.5V19.5M14 11V9" stroke="#17234D" stroke-width="2"/>
+</svg>
public override string ProvideIconPath() => GetResourcePath("main-menu-wifi-icon.svg");
public override Color ProvideIconColor() => new Color(ThemeManager.PlatformThemeId == "org.tizen.default-light-theme" ? "#FF6200" : "#FF8A00");
public override string ProvideTitle() => Resources.IDS_WIFI_BODY_WI_FI;
+ private static bool isLightTheme => ThemeManager.PlatformThemeId == "org.tizen.default-light-theme";
public MainPage()
{
{
IsSelectable = true,
CornerRadius = 50,
- BackgroundColor = GetDefaultColorSelector(),
+ BackgroundColor = isLightTheme ? new Color("#FAFAFA") : new Color("#1D1A21"),
};
Button infoButton = new Button(style)
{
WidthSpecification = buttonSize,
HeightSpecification = buttonSize,
- IconURL = Resources.GetPath() + "/images/wifi_icon_badge_info.png",
+ IconURL = Resources.GetPath() + "/images/wifi_icon_info.svg",
IsSelectable = false,
};