Hi,
In SwiftUI’s TabView, you can use any image as a tab icon, including SF Symbols and custom images. However, SF Symbols only includes a specific set of predefined icons — and as you’ve noticed, it does not include animal icons like monkey, bird, or mouse.
You can use custom images instead.
You can create or download your own animal icons (e.g., in PNG or SVG format), add them to your Xcode project’s asset catalog, and use them like this:
TabView {
Text("Monkey Info")
.tabItem {
Image("monkey_icon")
Text("Monkey")
}
}
Selecting any option will automatically load the page