Enroute learning SwiftUI following apple Developer Tutorial & Books
비슷하면서 많이 다르다는 점이 보임
- 객체를 분리해서 생성할 수 있음 (map, imageview)
- 비교적 불필요 해보이는 사소한 디테일이 없어졌다. (UIImage(systemName:) 같은)
- stack을 활용해서 쌓아 올리는 구조 - Using tons of StackViews?
- 분리 생성된 객체들은 한 군데로 조합이 가능하다. (within contentView for view creation)
You are able to..
- visually check changes directly through preview
- visit directly to the code via selectable (INTERESTING!)
- call the inspector (no need to open it sideways)
Overall, SwiftUI seems very intersting and yet very awkward in some ways. Although it is a tutorial, the way how codes are created vertically would definitely increase code volume.