Tuesday, July 23, 2019


#SwiftUI Stepper view can accept a range of values. You provide a min and max value with three dots between them as the second parameter. The 3 dots are called a "Range Operator" and it allows you to go from one to the next value.
Full Code: https://www.patreon.com/posts/28592457

Friday, July 19, 2019

SwiftUI: Stepper



SwiftUI Steppers! Bind it to a state variable to get and set the value. More info and the full code for this example here: https://www.patreon.com/posts/28497600

Thursday, July 18, 2019

SwiftUI: Slider with Images

#SwiftUI Slider with Images. I love the composability of SwiftUI. 👍🏼

Here's the code for the whole screen: https://www.patreon.com/posts/28469402

Wednesday, July 17, 2019

SwiftUI: The Slider - Introduction

Bind a state variable to a slider and you are good to go. Use the state variable to get and set the value of the slider. Want to create your own range of values? You can do that too!



To copy the code, go here ➡️ https://www.patreon.com/posts/28445080

Wednesday, July 10, 2019

SwiftUI: The Picker View

#SwiftUI Picker view is pretty straightforward. You give it a state variable to link to its selected value. You can populate the values manually or with a ForEach view.

SwiftUI Search & Filter with Combine - Part 3 (iOS, Xcode 13, SwiftUI, 2...

In part 3 of the Searchable video series, I show you how to use Combine in #SwiftUI for the search and filter logic connected to the searcha...