Shows source/category icon next to BrowseViewController’s title

Also tints all navigation bar buttons to match source/category tint color.

# Conflicts:
#	AltStore/Browse/BrowseViewController.swift
This commit is contained in:
Riley Testut
2023-12-06 15:36:20 -06:00
parent 160ac21858
commit 39e170d56a
3 changed files with 158 additions and 23 deletions

View File

@@ -57,6 +57,14 @@ public enum StoreCategory: String, CaseIterable
}
}
public var filledSymbolName: String {
switch self
{
case .utilities: return self.symbolName
default: return self.symbolName + ".fill"
}
}
public var tintColor: UIColor {
switch self
{