Untitled
unknown
swift
a year ago
731 B
49
Indexable
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
HStack {
Image(systemName: "star.circle")
.resizable()
.frame(width: 150, height: 150)
.foregroundColor(.indigo)
Image("dog")
.resizable()
.scaledToFill()
.frame(width: 150, height: 150)
.clipped()
}
Text("Hello, Rocket!")
.font(.largeTitle)
.fontWeight(.black)
.foregroundStyle(.indigo)
Text("Swift Coding Club")
Text("อายุ 4 ขวบ")
}
}
}
Editor is loading...
Leave a Comment