uias / Tabman

™️ A powerful paging view controller with interactive indicator bars
https://uias.github.io/Tabman
MIT License
2.87k stars 238 forks source link

how to change color of bar #548

Open naveenYellamraju opened 3 years ago

naveenYellamraju commented 3 years ago

New Issue Checklist

Issue Description

Other useful things

vladislavternovskiy commented 2 years ago
bar.subviews.forEach {
    $0.backgroundColor = .black
}
FarisAlbalawi commented 2 years ago
        let bar = TMBar.ButtonBar()
        let customView = UIView()
        customView.backgroundColor = UIColor.red
        bar.backgroundView.style = .custom(view: customView)