Posts by Samim
Author Biographical Info: Not available
In this tutorial, we will see how to disable scrolling in ScrollView and List in SwiftUI. We can control scrolling behavior in ScrollView and List views using the disabled() modifi.... Read More
In this tutorial, we will see how to create a stepper and read values from it in SwiftUI. We can simply increase or decrease a value like a counter by tapping buttons using the ste.... Read More
In this tutorial, we will see how to create static labels with a Text view in SwiftUI and also explore various features of the Text view, such as adjusting line limits and customiz.... Read More
In this tutorial, we will learn how to send state variable data from a parent view to a child view in SwiftUI. In SwiftUI app development transferring data from a parent view to a .... Read More
In this tutorial, we will see how to present a new view using a sheet in SwiftUI. We all have a basic idea about the sheet. A sheet is a way to present a modal view over our existi.... Read More
In this tutorial, we will see how to create a custom back button and implement a custom action for the navigation bar in SwiftUI. When we are using an iPhone app, there is a little.... Read More
In this tutorial, we will see how to make equal height subviews in HStack in SwiftUI. When we use an HStack in SwiftUI to align different things side by side, normally it will adju.... Read More
In this tutorial, we will see how to make a specific part of text bold in SwiftUI. Suppose, we have the text “Welcome to CodeSpeedy” and we want a specific word of the .... Read More