Skip to main content
  1. Categories/

SwiftUI Notes

2024


Day 20 - SwiftUI Project-2 Part-1

·2374 words·12 mins
With this project, we continue to progress in SwiftUI. We will learn new topics such as VStack, Image, LinearGradient.

Day 17 - SwiftUI Basics Project-1 Part-2

·1939 words·10 mins
In this section, we are starting to create WeSplit, our bill splitting application. In this section, we will examine how to read text with TextField, create Picker in Form, SwiftUI Segmented Control and how to hide the keyboard.

Day 16 - SwiftUI Basics Project-1 Part-1

·3100 words·15 mins
During Project-1, we will get an introduction to the basics of SwiftUI. Throughout the project, we will create an application called WeSplit.

Day 13 - Swift Protocol and Extension

·3478 words·17 mins
How to Create and Use Swift Protocol? #Protocol is similar to contracts in Swift. It allows us to define what kind of functions we expect a data type to support, so we can follow those rules in the rest of our code.

2023


Day 12 - Swift Classes and Inheritance

·3044 words·15 mins
Classes are quite similar to Struct at first glance. With Classes we can create new data types with their own properties and methods.