1. Sticker pack toolbar is now at the bottom of the "sticker keyboard" in chat. 2. Sticker pack toolbar is now "floating" in a a glass panel on iOS 26, both in sticker keyboard in chat and in full-screen sticker picker in media editor. 3. There's some helper text when "recent stickers" panel is empty.
20 lines
459 B
Swift
20 lines
459 B
Swift
//
|
|
// Copyright 2025 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
//
|
|
|
|
public import SignalServiceKit
|
|
|
|
public protocol StoryStickerPickerDelegate: AnyObject {
|
|
func didSelect(storySticker: EditorSticker.StorySticker)
|
|
}
|
|
|
|
public enum StoryStickerConfiguration {
|
|
case hide
|
|
case showWithDelegate(StoryStickerPickerDelegate)
|
|
}
|
|
|
|
public protocol StickerPickerDelegate: AnyObject {
|
|
func didSelectSticker(_ stickerInfo: StickerInfo)
|
|
}
|