You are here |
sarunw.com | ||
| | | |
swiftwithmajid.com
|
|
| | | | The recent version of the SwiftUI framework introduces a trigger value pattern across its APIs. Trigger value allows us to attach a view modifier that runs its action whenever the trigger value changes. You can find this pattern while using sensory feedback or launching keyframe animation in SwiftUI. This week, we will learn how to build custom view modifiers using trigger value pattern. | |
| | | |
ashishkakkad.com
|
|
| | | | SwiftUI announced in WWDC 2019. It's an innovative, exceptionally simple way to build user interfaces across all Apple platforms with the power of Swift. In previous blog I have shared some references from apple documents. We will learn it by examples. First of all let's start with simple UI. Create New Project Create new project ... Read more | |
| | | |
swiftwithmajid.com
|
|
| | | | During WWDC 23, SwiftUI introduced a new view modifier called visualEffect. This modifier allows us to attach a set of animatable visual effects by accessing layout information of the particular view. This week, we will learn how to use the new visualEffect view modifier in SwiftUI. | |
| | | |
swiftwithmajid.com
|
|
| | The primary goals of the microapps architecture are to maintain separation of concerns to enhance compile time, adhere to the single responsibility principle, and facilitate continuous delivery, allowing for the deployment of a feature without the need for the completion of other features. |