Posts by Samim

Author Biographical Info: Not available

Disable scrolling in ScrollView and List in SwiftUI

By Samim

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

Create stepper and read values from it in SwiftUI

By Samim

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

Create static labels with a Text view in SwiftUI

By Samim

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

Send state variable data to a child view in SwiftUI

By Samim

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

Present a new view using sheet in SwiftUI

By Samim

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

Custom back button for navigation bar in SwiftUI

By Samim

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

Make equal height subviews in HStack in SwiftUI

By Samim

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

Make specific parts of text bold in SwiftUI

By Samim

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

Related Posts