Explore >> Select a destination


You are here

nerdyak.tech
| | swiftui-lab.com
13.0 parsecs away

Travel
| | The SwiftUI GeometryEffect protocol offers beautiful and easy animations. It's simple, yet very powerful. You just need to get creative.
| | ashishkakkad.com
15.9 parsecs away

Travel
| | SwiftUI comes with easiest way of coding! In SwiftUI they have given 3 types of gradients, you can easily show gradients on any of the view. Linear Gradient Radial Gradient Angular Gradient In gradient option we have to pass array of colors. Linear Gradient Linear Gradient have start point and end point options. LinearGradient(gradient: Gradient(colors: ... Read more
| | swiftui-lab.com
13.2 parsecs away

Travel
| | We have seen how the Animatable protocol has helped us in animating paths and transform matrices. In this last part of the series, we will take it even further. The AnimatableModifier is the most powerful of all three. With it, we have no limits on what we can accomplish. The name says it all: AnimatableModifier. ... Read more
| | benoitpasquier.com
91.8 parsecs away

Travel
| To be sure new code won't break old one already implemented, it's best practice to write unit tests. When it comes to app architectures, it can be a challenge to write those tests. Following an MVVM pattern, how to unit test a view and its viewModel? That's what I would like to cover here using dependency injection.