Untitled
unknown
swift
24 days ago
731 B
9
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