Posts by shagrafnasheet

Author Biographical Info: Not available

Detect Screen size or resolution in SwiftUI

By shagrafnasheet

In this SwiftUI tutorial, we’ll learn how to detect the screen size or resolution in SwiftUI. We can use UIScreen.main.bounds to detect the Screen Size or resolution. We can .... Read More

Disable and Enable a Button in SwiftUI

By shagrafnasheet

This tutorial will teach us how to disable or enable a button or any other view in SwiftUI. It is pretty easy to achieve this functionality in SwiftUI with the help of a disabled m.... Read More

Circular image view in SwiftUI

By shagrafnasheet

In this SwiftUI tutorial, We will learn how to make a circular image view in SwiftUI. It’s quite easy to do this. We only have to use two SwiftUI modifiers which are the .fra.... Read More

Create a custom view with content in SwiftUI

By shagrafnasheet

In this tutorial, we will learn how we can make custom views in SwiftUI. Custom Views help us divide our complex screen design into tiny and simple layouts that we can edit and cha.... Read More

Create Custom alert or popup view in SwiftUI

By shagrafnasheet

In this SwiftUI tutorial, we’ll learn how to make a custom alert view or any popup view in SwiftUI. We’ll be using all the components we are already familiar with to cr.... Read More

Put an image in NavigationView in SwiftUI

By shagrafnasheet

In this tutorial, we’ll learn how to put an image in the Navigation view of SwiftUI. We can give an image to the navigation view in SwiftUI using navigationBarItems. Navigati.... Read More

Change the color of back button on NavigationView

By shagrafnasheet

In this tutorial, we’ll learn how to change the color of the back button on NavigationView in SwiftUI. It’s super easy all we have to do is use one SwiftUI modifier, th.... Read More

Create custom slider in SwiftUI

By shagrafnasheet

In this tutorial, We’ll learn to create a custom slider in SwiftUI. We create custom sliders because the default slider of SwiftUI doesn’t give us many options for modi.... Read More