mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
16 lines
341 B
Swift
16 lines
341 B
Swift
// Copyright 2018 Yandex LLC. All rights reserved.
|
|
|
|
import Foundation
|
|
|
|
public protocol ScrollViewTrackable {
|
|
var isTracking: Bool { get }
|
|
var isDragging: Bool { get }
|
|
var isDecelerating: Bool { get }
|
|
}
|
|
|
|
extension ScrollViewTrackable {
|
|
public var isChangingContentOffsetDueToUserActions: Bool {
|
|
isTracking || isDecelerating
|
|
}
|
|
}
|