parent
8aac942df7
commit
c56dc05f3a
@ -1,6 +1,7 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"filename" : "Unknown.jpeg",
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
After Width: | Height: | Size: 7.7 KiB |
@ -0,0 +1,27 @@
|
||||
//
|
||||
// ProfileEdit.swift
|
||||
// ArkitDoushiQi
|
||||
//
|
||||
// Created by Johan LACHENAL on 28/05/2024.
|
||||
//
|
||||
|
||||
import SwiftUI
|
||||
|
||||
struct ProfileEdit: View {
|
||||
var body: some View {
|
||||
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
|
||||
}
|
||||
}
|
||||
|
||||
struct ProfileEdit_Previews: PreviewProvider {
|
||||
static var previews: some View {
|
||||
VStack {
|
||||
ProfileComponent(imageName: "profil", color: Color(.red), profileWidth: 100, profileHeight: 100)
|
||||
VStack(alignment: .trailing) {
|
||||
HStack {
|
||||
EditComponent(explanation: "Nom du Joueur 1", value: "Joueur 1")
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in new issue