//
|
|
// ContentView.swift
|
|
// ContadorPadel
|
|
//
|
|
// Created by Celestino Rey on 18/3/24.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct ContentView: View {
|
|
var body: some View {
|
|
|
|
VStack (alignment: .leading) {
|
|
Text("¡Hola, mundo cruel")
|
|
.font(.title)
|
|
.fontWeight(.bold)
|
|
.foregroundColor(Color.green)
|
|
HStack {
|
|
Text("¡qué bien me lo estoy pasando!")
|
|
.font(.subheadline)
|
|
Spacer()
|
|
Text("Es maravilloso")
|
|
}
|
|
}
|
|
.padding()
|
|
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
ContentView()
|
|
}
|