Aplicaciones de ReEvolution y miscelaneas
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.
 
 
 

32 lines
633 B

//
// 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()
}