Browsing Category
Swift Programming Language
6 posts
Identifiable protocol in Swift and SwiftUI
Identifiable is a protocol in Swift that forces types to include a unique identifier property. This identifier helps…
December 21, 2024
What is @Binding in SwiftUI
Binding is one of several property wrappers that SwiftUI presents to us to control the flow of data…
December 18, 2024
How to create a button with Label view in SwiftUI
Label in SwiftUI is a view that allows us to have an icon and a text in the…
December 17, 2024
What is the .minimumScaleFactor modifier for?
In SwiftUI you can use the .minimumScaleFactor modifier to automatically downscale text. For example: SwiftUI will automatically scale…
December 13, 2024
How to add vertical and horizontal ScrollView in SwiftUI
A scroll view is a scrollable component in SwiftUI. It is a container view that displays its content…
December 13, 2024
How to display numbers in list in Swift programming language
To display numbers in a list with Swift just use this code in ContentView.swift file This is the…
May 23, 2024