Posts by shagrafnasheet

Author Biographical Info: Not available

Auto scroll to a specific position in SwiftUI

By shagrafnasheet

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

Scroll to a specific position in SwiftUI with button click

By shagrafnasheet

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

Change the Status Bar text color in SwiftUI

By shagrafnasheet

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

File Picker in SwiftUI – fileImporter

By shagrafnasheet

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

Play audio file in SwiftUI

By shagrafnasheet

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

How to set gradient background in SwiftUI

By shagrafnasheet

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

Custom Datepicker style in SwiftUI

By shagrafnasheet

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

TabView and TabItem() in SwiftUI

By shagrafnasheet

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

Related Posts