mirror of
https://github.com/neon443/StickerSlack.git
synced 2026-03-11 13:26:17 +00:00
32 lines
459 B
Swift
32 lines
459 B
Swift
//
|
|
// ContentView.swift
|
|
// StickerSlack
|
|
//
|
|
// Created by neon443 on 15/10/2025.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct ContentView: View {
|
|
@StateObject var hoarder: EmojiHoarder = EmojiHoarder()
|
|
|
|
var body: some View {
|
|
NavigationStack {
|
|
TabView {
|
|
List {
|
|
ForEach(hoarder.emojis, id: \.self) { emoji in
|
|
EmojiPreview(emoji: emoji)
|
|
}
|
|
}
|
|
.tabItem {
|
|
Label("home", systemImage: "house")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
ContentView()
|
|
}
|