We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'd like to:
Spacer()
override func viewDidLoad() { super.viewDidLoad() dataSource = self let bar = TMBarView.ButtonBar() bar.buttons.customize { $0.tintColor = UIColor(Color.theme.accent) $0.selectedTintColor = UIColor(Color.theme.accent) $0.font = UIFont(name: "ComicSans-Regular", size: 16)! $0.selectedFont = UIFont(name: "ComicSans-Regular", size: 16)! } let systemBar = bar.systemBar(); systemBar.backgroundStyle = .flat(color: UIColor(Color.red)) systemBar.separatorColor = .clear addBar(systemBar, dataSource: self, at: .top) }
The text was updated successfully, but these errors were encountered:
@qweluke Does adding bar.layout.contentMode = .fit solve your problem?
bar.layout.contentMode = .fit
Sorry, something went wrong.
No branches or pull requests
New Issue Checklist
Issue Description
I'd like to:
Spacer()
between each tab so they fill all of the spaceThe text was updated successfully, but these errors were encountered: