mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-07-16 08:19:23 +00:00
15 lines
303 B
Swift
15 lines
303 B
Swift
import Foundation
|
|
import AsyncDisplayKit
|
|
import Display
|
|
|
|
final class ContextContentContainerNode: ASDisplayNode {
|
|
var contentNode: ContextContentNode?
|
|
|
|
override init() {
|
|
super.init()
|
|
}
|
|
|
|
func updateLayout(size: CGSize, transition: ContainedViewLayoutTransition) {
|
|
}
|
|
}
|