mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
14 lines
336 B
Swift
14 lines
336 B
Swift
import Foundation
|
|
import AsyncDisplayKit
|
|
import Display
|
|
|
|
struct ChatMediaInputPaneScrollState {
|
|
let absoluteOffset: CGFloat?
|
|
let relativeChange: CGFloat
|
|
}
|
|
|
|
class ChatMediaInputPane: ASDisplayNode {
|
|
func updateLayout(size: CGSize, topInset: CGFloat, bottomInset: CGFloat, transition: ContainedViewLayoutTransition) {
|
|
}
|
|
}
|