How to Hide Navigation bar in SwiftUI

By shagrafnasheet

Sometimes there is some white space visible above your content in SwiftUI applications, even when you don’t set the navigation bar title. So this tutorial will guide you in h.... Read More

Sort array elements by length in Swift

By Aakanksha Thakar

This tutorial will show you how to sort an array of elements by a length in Swift. This type of sorting is done mainly on a string array to get a sorted array according to the elem.... Read More

How to access a super class variable in child class in Python

By Khushi Aswani

In this tutorial, we will discuss how to access a superclass variable in a child class in Python which comes under the OOPS concept of inheritance. We need to use the variable of a.... Read More

How to reload view in SwiftUI (after specific interval of time)

By shagrafnasheet

This tutorial will guide you on reloading a view in SwiftUI after a specific time interval. I will be using DispatchQueue to delay reloading the view for 1 min. And after 1 min it .... Read More

Tkinter place() method

By Satyam Singh Niranjan

Tkinter has quite a few geometry managers including pack, grid and place is one of them. Geometry managers are simply used to position widgets on the Tkinter window and in a way ha.... Read More

Check if a string contains special character in it in Swift

By Vaishnavi Nibe

In this tutorial, we will learn how to check if a string contains special characters in it in Swift with a simple example. If you want to check if your string is having any special.... Read More

Polymorphism in Java with examples

By Harshad Lukare

In this tutorial, we are going to learn polymorphism in Java. Polymorphism is one feature of object-oriented programming language (JAVA). The word polymorphism is made up of two wo.... Read More

Python program to check if leaf traversal of two Binary Trees is same

By Reetesh Kumar

In this tutorial, we’ll learn how to check if leaf traversal of two Binary Trees is the same or not with the help of Python programming. A binary treeĀ is a hierarchical data.... Read More