starting to add emojipacks

This commit is contained in:
neon443
2025-12-01 15:07:44 +00:00
parent 74d6b29f69
commit 11cebac1b4
5 changed files with 84 additions and 0 deletions

24
EmojiPackManager.swift Normal file
View File

@@ -0,0 +1,24 @@
//
// EmojiPackManager.swift
// StickerSlack
//
// Created by neon443 on 01/12/2025.
//
import SwiftUI
struct EmojiPackManager: View {
@ObservedObject var hoarder: EmojiHoarder
var body: some View {
ForEach(hoarder.emojiPacks) { pack in
EmojiPackView(pack: pack)
}
}
}
#Preview {
EmojiPackManager(
hoarder: EmojiHoarder(localOnly: true, skipIndex: true)
)
}