Updates Browse tab icon

This commit is contained in:
Riley Testut
2023-10-18 17:18:03 -05:00
committed by Magesh K
parent 1d19a31a86
commit 2aebaf80e0

View File

@@ -43,6 +43,9 @@ final class TabBarController: UITabBarController
{
super.viewDidLoad()
let browseNavigationController = self.viewControllers![Tab.browse.rawValue] as! UINavigationController
browseNavigationController.tabBarItem.image = UIImage(systemName: "bag")
let sourcesNavigationController = self.viewControllers![Tab.sources.rawValue] as! UINavigationController
self.sourcesViewController = sourcesNavigationController.viewControllers.first as? SourcesViewController
}