Status Updates From Asynchronous Programming wi...
Asynchronous Programming with SwiftUI and Combine: Functional Programming to Build UIs on Apple Platforms by
Status Updates Showing 1-30 of 49
Asif Mujtaba
is on page 110 of 434
Chapter 3:
----------
1. SwiftUI views are just a description of the UI. caution: don't perform any long-running or memory-intensive operations in a View’s initializer.
2. Views can be composed to create more complex views, some containers are HStack, VStack, ZStack.
3. View modifiers can be used to customize views.
It can do both - (i) modify views look & feel (ii) can register closure for getting event occurrence.
— Nov 20, 2023 10:47AM
Add a comment
----------
1. SwiftUI views are just a description of the UI. caution: don't perform any long-running or memory-intensive operations in a View’s initializer.
2. Views can be composed to create more complex views, some containers are HStack, VStack, ZStack.
3. View modifiers can be used to customize views.
It can do both - (i) modify views look & feel (ii) can register closure for getting event occurrence.

