parent
ab4b4e33c3
commit
76935a1bcc
Binary file not shown.
Binary file not shown.
@ -0,0 +1,20 @@
|
||||
//
|
||||
// AvatarView.swift
|
||||
// WtaTennis
|
||||
//
|
||||
// Created by Johan LACHENAL on 14/05/2024.
|
||||
//
|
||||
|
||||
import SwiftUI
|
||||
|
||||
struct AvatarView: View {
|
||||
var body: some View {
|
||||
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
|
||||
}
|
||||
}
|
||||
|
||||
struct AvatarView_Previews: PreviewProvider {
|
||||
static var previews: some View {
|
||||
AvatarView()
|
||||
}
|
||||
}
|
@ -0,0 +1,24 @@
|
||||
//
|
||||
// PlayerDetailView.swift
|
||||
// WtaTennis
|
||||
//
|
||||
// Created by Johan LACHENAL on 14/05/2024.
|
||||
//
|
||||
|
||||
import SwiftUI
|
||||
|
||||
struct PlayerDetailView: View {
|
||||
var body: some View {
|
||||
VStack()
|
||||
{
|
||||
RankingView()
|
||||
InfoDetailView()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
struct PlayerDetailView_Previews: PreviewProvider {
|
||||
static var previews: some View {
|
||||
PlayerDetailView()
|
||||
}
|
||||
}
|
Loading…
Reference in new issue