mirror of https://github.com/alibaba/MNN.git
21 lines
435 B
Swift
21 lines
435 B
Swift
|
|
//
|
||
|
|
// 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)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|