private static ScrollableBase mScrollableInfo;
private static TextField mDeviceNameField;
private static readonly Color underlineColor = new Color("#FF6200");
+ private static bool isLightTheme => ThemeManager.PlatformThemeId == "org.tizen.default-light-theme";
internal static void CreateDetailView(Device device)
{
{
WidthSpecification = LayoutParamPolicies.MatchParent,
HeightSpecification = 48,
- BackgroundColor = Color.White,
+ BackgroundColor = isLightTheme ? new Color("#FAFAFA") : new Color("#1D1A21"),
Text = deviceName,
TextColor = Color.Grey,
Margin = new Extents(24, 0, 0, 0).SpToPx(),