In this tutorial, we will see how to check if a specific key is present in a Swift dictionary. Below are some methods to check if a specific key is present or not. We can do this .... Read More
If we want to change or update the value of any property in SwiftUI, we use the State property wrapper. SwiftUI keeps track of State properties and automatically updates all the vi.... Read More
In the last post, we learned how to Scroll to a specific position with a button click. But what if we don’t want to do it manually like we want to do it without any user inte.... Read More
In order to scroll to a specific position in swiftUI we have something that we can use which is ScrollViewReader. We can tell it where to scroll and it will automatically scroll to.... Read More
The App will pick the status bar text color based on the system mode of appearance. For Example, if your mobile is in the dark mode, the status bar text will appear in light conten.... Read More
In Order to access local files in SwiftUI We have to use fileImporter. FileImporter helps us to access our local storage and import local files into our project. What this blog wil.... Read More
You can play audio files in SwiftUI in the same manner you do it in Swift and that is with the help of AVFoundation framework. AVFoundation framework works with audio-visual assets.... Read More
This tutorial will help you set gradient background color in SwiftUI. Fortunately, SwiftUI has made it very easy to set gradient colors in your views. SwiftUI provides us with buil.... Read More