mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-16 10:30:08 +00:00
22 lines
415 B
Swift
22 lines
415 B
Swift
import Foundation
|
|
import Display
|
|
import AsyncDisplayKit
|
|
|
|
final class ChatHoleGalleryItem: GalleryItem {
|
|
func node() -> GalleryItemNode {
|
|
return ChatHoleGalleryItemNode()
|
|
}
|
|
|
|
func updateNode(node: GalleryItemNode) {
|
|
|
|
}
|
|
}
|
|
|
|
final class ChatHoleGalleryItemNode: GalleryItemNode {
|
|
override init() {
|
|
super.init()
|
|
|
|
self.backgroundColor = UIColor.blue
|
|
}
|
|
}
|