Get the length of a string in Swift

By Samim

In this tutorial, I will show you how you can get the length of a string in Swift. A string in Swift is a collection of characters surrounded by double quotation marks. We have sev.... Read More

Concatenate multiple arrays into String in Java

By Aman Yadav

In this tutorial, you will learn how to concatenate multiple arrays into a String in Java. So, concatenation simply means to merge. You have to merge the arrays into a String, an a.... Read More

Create a custom view with content in SwiftUI

By shagrafnasheet

In this tutorial, we will learn how we can make custom views in SwiftUI. Custom Views help us divide our complex screen design into tiny and simple layouts that we can edit and cha.... Read More

Create Custom alert or popup view in SwiftUI

By shagrafnasheet

In this SwiftUI tutorial, we’ll learn how to make a custom alert view or any popup view in SwiftUI. We’ll be using all the components we are already familiar with to cr.... Read More

How to use std::normal_distribution in C++

By Vidhi Jain

In this tutorial, will learn about the normal distribution class in C++. Header file used: <random.h> We use it to generate random numbers according to the Normal random numb.... Read More

Convert Numpy Array into Keras Tensor

By Ripan Purkait

In this blog, we will explore the process of converting a Numpy array to a Keras tensor. Converting Numpy arrays to TensorFlow tensors is essential for seamlessly integrating Numpy.... Read More

Put an image in NavigationView in SwiftUI

By shagrafnasheet

In this tutorial, we’ll learn how to put an image in the Navigation view of SwiftUI. We can give an image to the navigation view in SwiftUI using navigationBarItems. Navigati.... Read More

Change the color of back button on NavigationView

By shagrafnasheet

In this tutorial, we’ll learn how to change the color of the back button on NavigationView in SwiftUI. It’s super easy all we have to do is use one SwiftUI modifier, th.... Read More

Related Posts