Android Kotlin program to load image from url using glide

Go (here)[https://github.com/bumptech/glide] to check for the latest version of Glide. Open your build.gradle in your project file and add the below to the repositories tab :.

Read

Kotlin program to delete all files in a folder

In Kotlin, you don't have to iterate through all files in a folder and delete the files one by one. Kotlin comes with an inbuilt File method called deleteRecursively that can be used to delete all files in a folder. In this post, I will show you how to use deleteRecursively with an example.

Read

Convert Java file to Kotlin in Intellij Idea

You can use both Kotlin and Java files in a Kotlin program. Like if you want to move your Android project from Java to Kotlin, you can do that. You can add new files as kotlin files. Or, you can convert your existing Java files as well.

Read

Kotlin program to decapitalize the first character of a string

In this post, I will show you two different ways to decapitalize the first character of a string. For example, if the string is 'TWELVE', it will change it to 'tWELVE'.

Read

React Native program to place two buttons side by side

In this post, I will show you how to place two buttons side by side in react native. We will create one new component for the buttons.

Read

React Native button component example

React native button component is used to show one button on both Android and iOS. If you have worked on Android and iOS projects before, you must be aware of the fact that button looks different on both platforms. React native provides a couple of customization props that we can use to customize a button.

Read

Python program to create one list from set and dictionary

In this quick python tutorial, we will learn how to create one list from one set or dictionary. A set can keep only unique elements and dictionary holds key-value pairs.

Read

How to show hide Activity Indicator spinner on button click in React Native

In this React Native tutorial program, we will learn how to show/hide one Activity Indicator based on a button click. The user will click one button to show the loading spinner and click it again to hide it.

Read

ActivityIndicator in React Native

ActivityIndicator is used to show a circular progress loader. For example, if you are downloading something from the internet and you want to show a progress indicator to the user, you can use ActivityIndicator. This component is easy to use and with a few customizable properties.

Read

How to create a rounded corner button in React Native

In this tutorial, we will learn how to create one rounded corner button in React Native.

Read