MNN/apps/iOS/MNNLLMChat/MNNLLMiOS/MainTab/Benchmark/Views/BenchmarkView.swift

21 lines
435 B
Swift
Raw Normal View History

2025-06-20 17:39:06 +08:00
//
// MNNLLMiOSApp.swift
// BenchmarkView
//
// Created by () on 2025/06/20.
//
import SwiftUI
struct BenchmarkView: View {
var body: some View {
NavigationView {
Text("Benchmark 页面暂未开放")
.font(.title2)
.foregroundColor(.gray)
.navigationTitle("Benchmark")
.navigationBarTitleDisplayMode(.large)
}
}
}