MNN/apps/iOS/MNNLLMChat/MNNLLMiOS/MainTab/MainTabItem.swift

26 lines
512 B
Swift

//
// MainTabItem.swift
// MNNLLMiOS
//
// Created by () on 2025/9/3.
//
import SwiftUI
struct MainTabItem: View {
let imageName: String
let title: String
let isSelected: Bool
var body: some View {
VStack {
Image(imageName)
.resizable()
.aspectRatio(contentMode: .fit)
.frame(width: 10, height: 10)
Text(title)
}
.foregroundColor(isSelected ? .primaryPurple : .gray)
}
}