You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
416 B
25 lines
416 B
//
|
|
// AccountView.swift
|
|
// PadelClub
|
|
//
|
|
// Created by Laurent Morvillier on 21/02/2024.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct AccountView: View {
|
|
|
|
var user: User
|
|
|
|
var body: some View {
|
|
Form {
|
|
NavigationLink("Change password") {
|
|
ChangePasswordView()
|
|
}
|
|
}.navigationTitle(user.username)
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
AccountView(user: User(username: "coco"))
|
|
}
|
|
|