From 1780c9568411faeae40959febc5bf740933b49a3 Mon Sep 17 00:00:00 2001 From: Krishna Kishore Bandaru Date: Tue, 20 Feb 2024 19:56:27 +0530 Subject: [PATCH] removed gray --- VDSSample/ViewControllers/TileContainerViewController.swift | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/VDSSample/ViewControllers/TileContainerViewController.swift b/VDSSample/ViewControllers/TileContainerViewController.swift index 98ea78a..6a58b9c 100644 --- a/VDSSample/ViewControllers/TileContainerViewController.swift +++ b/VDSSample/ViewControllers/TileContainerViewController.swift @@ -350,7 +350,7 @@ extension TileContainerViewController { //Created new BackgroundColor enum for sample app only. Since we defined enum with associated value color defined in TileContainer cannot be RawRepresentable & CaseIterable enum BackgroundColor: String, CaseIterable { - case primary, secondary, white, black, gray, custom + case primary, secondary, white, black, custom var color: TileContainer.BackgroundColor? { switch self { @@ -362,8 +362,6 @@ extension TileContainerViewController { .white case .black: .black - case .gray: - .gray case .custom: nil }