Various improvements

This commit is contained in:
Isaac
2025-06-05 19:09:18 +08:00
parent 40b770dde8
commit b5c3d6f34f
14 changed files with 248 additions and 123 deletions

View File

@@ -11,6 +11,7 @@ public enum ChatListControllerLocation: Equatable {
public protocol ChatListController: ViewController {
var context: AccountContext { get }
var location: ChatListControllerLocation { get }
var lockViewFrame: CGRect? { get }
var isSearchActive: Bool { get }
@@ -25,4 +26,6 @@ public protocol ChatListController: ViewController {
func openStories(peerId: EnginePeer.Id)
func openStoriesFromNotification(peerId: EnginePeer.Id, storyId: Int32)
func resetForumStackIfOpen()
}