mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +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) {
|
|
}
|
|
}
|