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.
33 lines
651 B
33 lines
651 B
//
|
|
// RankingView.swift
|
|
// WtaTennis
|
|
//
|
|
// Created by Johan LACHENAL on 14/05/2024.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct InfoTextView: View {
|
|
var title: String
|
|
var value: String
|
|
|
|
var body: some View {
|
|
HStack {
|
|
VStack(alignment: .leading, spacing: 10) {
|
|
Text(title)
|
|
.fontWeight(.semibold)
|
|
.foregroundColor(.white)
|
|
Text(value)
|
|
}
|
|
Spacer()
|
|
}
|
|
}
|
|
}
|
|
|
|
struct InfoTextView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
InfoTextView(title: "je suis un titre", value: "je suis un contenu")
|
|
}
|
|
}
|
|
|