이 문서를 언급한 문서들10
- 하늘땅사람 개발 기록... 분산시키고 좋은 품질을 유지하기 위해 SwiftUI를 사용하는 방안을 연구 중.
- ULLO- PoC of SwiftUI Photo Widget App
- Dismiss KeyboardSwiftUI
- Cube- SwiftUI
- Creating Observable Object in SwiftUICreating Observable Object in SwiftUI
- Creating Next Keyboard Button in SwiftUICreating Next Keyboard Button in SwiftUI
- CELLO (Product)- SwiftUI
- Apple- Creator of Swift, SwiftUI, Apple Silicon, Apple Vision Pro, ...
- 2022-11-28- SwiftUI. [SwiftUI is convenient, but slow](https://notes.alinpanaitiu.com/SwiftUI%20is%20convenient,%20but%20slow)
- 2022-08-04### Explored SwiftUI.
SwiftUI
- Declarative Framework made with Swift
- SwiftUI is convenient but slow
SwiftUI Overview - Xcode - Apple Developer
- SwiftUI App abides by the App Protocol.
- Structure Body returns 1 or more scenes.
@mainmarks the entry point of the app.- I like how it is declarative
import SwiftUI
struct LandmarkDetail: View {
var body: some View {
Text("Hello, World!")
}
}
struct LandmarkDetail_Previews: PreviewProvider {
static var previews: some View {
LandmarkDetail()
}
}
struct LandmarkRow_Previews: PreviewProvider {
static var previews: some View {
Group {
LandmarkRow(landmark: landmarks[0])
LandmarkRow(landmark: landmarks[1])
}.previewLayout(.fixed(width: 300, height: 70))
}
}
Text("Turtle Rock").font(.title)