26 lines
424 B
Swift
26 lines
424 B
Swift
//
|
|
// ProfileTabView.swift
|
|
// duduji
|
|
//
|
|
// Created by ching on 2023/5/7.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct ProfileTabView: View {
|
|
var body: some View {
|
|
NavigationStack {
|
|
ProfileView()
|
|
// .toolbar {
|
|
// ToolBar()
|
|
// }
|
|
}
|
|
}
|
|
}
|
|
|
|
struct ProfileTabView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
ProfileTabView()
|
|
}
|
|
}
|