Material
Material copied to clipboard
TabBarItems alignment on BottomNavigationController
Hello @danieldahan, @OrkhanAlikhanov!
I am facing an issue with BottomNavigationController after updating to latest pod. When switching back to portrait from landscape mode, the alignment of TabBarItems on Tab Bar gets misplaced, all items get gathered on left.
Waiting for response! Thank you!
Fixed this issue by using new TabBar properties for iOS 13.
let appearance = UITabBarAppearance()
appearance.stackedItemPositioning = .centered
appearance.stackedLayoutAppearance.normal.titleTextAttributes = normalAttribute
appearance.stackedLayoutAppearance.selected.titleTextAttributes = selectedAttribute
tabBar.standardAppearance = appearance