mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
19 lines
525 B
Swift
19 lines
525 B
Swift
import Foundation
|
|
import AsyncDisplayKit
|
|
import Display
|
|
|
|
struct ChatMediaInputPaneScrollState {
|
|
let absoluteOffset: CGFloat?
|
|
let relativeChange: CGFloat
|
|
}
|
|
|
|
class ChatMediaInputPane: ASDisplayNode {
|
|
var collectionListPanelOffset: CGFloat = 0.0
|
|
|
|
func updateLayout(size: CGSize, topInset: CGFloat, bottomInset: CGFloat, isExpanded: Bool, isVisible: Bool, transition: ContainedViewLayoutTransition) {
|
|
}
|
|
|
|
func updateThemeAndStrings(theme: PresentationTheme, strings: PresentationStrings) {
|
|
}
|
|
}
|