dudu-mastodon/duduji/Core/Profile/Views/ProfileTabView.swift
Ching 457829794d feat(View): 增加 ProfileView
增加 ProfileView

Signed-off-by: Ching <loooching@gmail.com>
2023-05-07 23:34:51 +08:00

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()
}
}