はじめに
PlaygroundでViewをPreviewする事ができることを知りました。
実装
import SwiftUI
import PlaygroundSupport
struct PlaygroundView: View {
var body: some View {
VStack {
Text("Hello, World!")
Text("Hello, World!")
Text("Hello, World!")
Text("Hello, World!")
Text("Hello, World!")
}
.frame(width: 300, height: 300)
}
}
PlaygroundPage.current.setLiveView(PlaygroundView())
やりかた
① 右上の5本線のボタンをタップします。
② 「Live View」をタップします。
おわり
簡単なUIの確認とかはPlaygroundで良さそう
今まで毎回新規プロジェクト作ってた、、、