Posts by shagrafnasheet
Author Biographical Info: Not available
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
A DatePicker view is a controller that allows users to select a calendar date and time. It’s similar to the UIDatePicker view and In order to work it needs to bind to a Date .... Read More
In this tutorial, We’ll learn how to implement TabView in SwiftUI. TabView works the same as UITabBarController. Whenever we want to show more views on the same screen the ea.... Read More