xmartlabs / XLPagerTabStrip

Android PagerTabStrip for iOS.
MIT License
6.97k stars 1.33k forks source link

gap between the button bars #790

Open yuhai-bd opened 4 years ago

yuhai-bd commented 4 years ago

How can I set space padding between tabs to zero? I'd like tabs to fill the bar and avoid gaps, without scrolling. And to have the same width if possible. I'm using the 5.0 (swift) version from pods.

image

linhnv106 commented 4 years ago

I'm using this trick. it works perfectly `if let layout = buttonBarView.collectionViewLayout as? UICollectionViewFlowLayout { layout.minimumLineSpacing = 0 layout.minimumInteritemSpacing = 0 buttonBarView.collectionViewLayout = layout

}`