bill Tabs Shifty red selectionLine issue fixed

This commit is contained in:
teegsh2 2023-03-31 04:33:36 +05:30
parent 63504ae644
commit 3d351cc83f

View File

@ -235,7 +235,9 @@ extension Tabs: UICollectionViewDelegateFlowLayout {
public func collectionView(_ collectionView: UICollectionView, willDisplay cell: UICollectionViewCell, forItemAt indexPath: IndexPath) {
guard let tabCell = cell as? TabItemCell else { return }
if indexPath.row == selectedIndex {
moveSelectionLine(toIndex: indexPath, animated: false, cell: tabCell)
DispatchQueue.main.async {
self.moveSelectionLine(toIndex: indexPath, animated: false, cell: tabCell)
}
}
}