ESTabBarController
ESTabBarController copied to clipboard
How To adjust text in iPad.
- As per below image unable to customise the position of the text.
In your ESTabBarItemContentView subclass you can override traitCollection like so:
override var traitCollection: UITraitCollection {
return UITraitCollection(traitsFrom: [super.traitCollection, UITraitCollection(horizontalSizeClass: .compact)])
}
This will place the text below the icon.