mirror of
https://github.com/neon443/StickerSlack.git
synced 2026-03-11 05:19:13 +00:00
starting to add emojipacks
This commit is contained in:
24
EmojiPackManager.swift
Normal file
24
EmojiPackManager.swift
Normal 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)
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user