mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
15 lines
395 B
Swift
15 lines
395 B
Swift
import Foundation
|
|
import AsyncDisplayKit
|
|
import Display
|
|
import Postbox
|
|
import TelegramCore
|
|
|
|
class ChatInputPanelNode: ASDisplayNode {
|
|
var account: Account?
|
|
var interfaceInteraction: ChatPanelInterfaceInteraction?
|
|
|
|
func updateLayout(width: CGFloat, transition: ContainedViewLayoutTransition, interfaceState: ChatPresentationInterfaceState) -> CGFloat {
|
|
return 0.0
|
|
}
|
|
}
|