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.
28 lines
507 B
28 lines
507 B
//
|
|
// PersonDetailView.swift
|
|
// MySwiftUi
|
|
//
|
|
// Created by etudiant on 11/05/2023.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct PersonDetailView: View {
|
|
let person: Library
|
|
|
|
var body: some View {
|
|
VStack {
|
|
Image(person.thumbnail)
|
|
.resizable()
|
|
.scaledToFit()
|
|
Text(person.name)
|
|
.font(.headline)
|
|
.padding()
|
|
Text(person.maj)
|
|
.font(.subheadline)
|
|
.padding()
|
|
}
|
|
}
|
|
}
|
|
|