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

31 lines
702 B
Swift
Raw Normal View History

2025-06-20 17:39:06 +08:00
//
// MNNLLMiOSApp.swift
// MainTabView
//
// Created by () on 2025/06/20.
//
import SwiftUI
struct MainTabView: View {
var body: some View {
TabView {
LocalModelListView()
.tabItem {
Image(systemName: "house.fill")
Text("本地模型")
}
ModelListView()
.tabItem {
Image(systemName: "cart.fill")
Text("模型市场")
}
BenchmarkView()
.tabItem {
Image(systemName: "clock.fill")
Text("Benchmark")
}
}
}
}