Posts from Swift

Round specific corners in SwiftUI

By Samim

In this tutorial, we will see how we can round specific corners in SwiftUI. We can create soft edges, and unique shapes, or focus attention on certain parts of the interface by rou.... Read More

Gradient Animation in SwiftUI

By shagrafnasheet

In this SwiftUI tutorial, we’ll learn how to make a gradient animation background in SwiftUI. SwiftUI provides us LinearGradient which helps us create a gradient background q.... Read More

Transition animation between views in SwiftUI

By shagrafnasheet

In this SwiftUI tutorial, we’ll learn how we can change views with a transition animation. The simplest way of doing this is using withAnimation closure. We can call any view.... Read More

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

Customize radio button in SwiftUI

By Samim

In this tutorial, we will see how we can customize radio buttons in SwiftUI. We basically customize radio buttons to make them more attractive and stylish. You can look over the li.... Read More

Create radio button in SwiftUI

By Samim

In this tutorial, we will learn how to make radio buttons in SwiftUI. If we need to choose a single option from multiple options, then we have to use radio buttons. First of all, w.... 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

Related Posts