SwiftUI備忘録

すぐ忘れてしまうので簡単なメモをここに
自分用なので簡潔に書いてます

VStack //縦並び
HStack //横並び
ZStack // 重ね合わせ

//– イメージ ———-
Image(“imgLogo”) //asset
Image(uiImage: UIImage(named: “imgLogo”) ?? UIImage()) //UIImage

.resizable()
 .scaledToFit()
 .frame(width: UIScreen.main.bounds.width, height: UIScreen.main.bounds.height)
 .aspectRatio(0.5, contentMode: .fit)
 .cornerRadius(10)
 .clipShape(Circle())
 .overlay(
  Rectangle().stroke(Color.gray, lineWidth: 5)) //Circle()
 .shadow(radius: 10)