[ios] Transit step panel is automatically scrolled to bottom

Signed-off-by: S. Kozyr <s.trump@gmail.com>
This commit is contained in:
Sergiy Kozyr 2023-09-15 13:23:49 +03:00 committed by Alexander Borsuk
parent ef576db572
commit 5873b3075d

View file

@ -61,6 +61,11 @@ final class TransportRoutePreviewStatus: SolidTouchView {
self.animateConstraints(animations: {
self.stepsCollectionViewHeight.constant = self.stepsCollectionView.contentSize.height
})
if let sv = self.stepsCollectionScrollView {
let bottomOffset = CGPoint(x: 0, y: sv.contentSize.height - sv.bounds.size.height)
sv.setContentOffset(bottomOffset, animated: true)
}
}
}