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

Convert all string items of a list to integer in Python

By Saruque Ahamed Mollick

In this tutorial, I will show you how to convert all string items of a list to integer items in Python. It’s better to show an example of what I am going to do in this tutori.... 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

Replace an object in an array with another object in JavaScript

By Samim

In this tutorial, I will show how you can replace an object in an array with another object in JavaScript. Here are some methods below to replace an object in an array with another.... 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

Remove first n characters from a string in Python

By Saruque Ahamed Mollick

In this tutorial, we will learn how to remove the first n characters from a string in Python. We will cover these: The simplest way to remove the first n characters. (Slice notatio.... Read More

Related Posts