import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Image("rainbowlake")
.clipShape(Circle())
.overlay{ Circle()
.stroke(.white, lineWidth: 10)
}
.shadow(radius: 4)
Text("Ocean")
.font(.largeTitle)
.fontWeight(.semibold)
.foregroundColor(Color.blue)
.padding(.all)
.background(Color.red).cornerRadius(40)
}
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}