React Navigation part 3: program to move between screens using react navigation

In our previous tutorials, we have learned how to do the setup for react-navigation and how to arrange different screens in react-navigation. In this tutorial, I will show you how to move between two screens i.e. move forward and backward between two screens. navigation'

Read

How to remove string character using index in Dart

Sometimes we need to remove one character from a string using its index. The string is immutable. We can't modify it. The only way is to create one different new string from the old one.

Read

Dart program to concat string with integer

In this tutorial, we will learn how to concatenate one string with an integer. For example, if one integer 25 is given, we will concatenate with one string, say degree to create the final string 25 degree.

Read

Kotlin program to convert one character to integer

In this tutorial, I will show you how to convert one character to integer in Kotlin. Kotlin provides a lot of utility functions for each class.

Read

React navigation part 2: Manage multiple screens

In our last tutorial, I have shown you how to install react-navigation in an existing react native project. In this post, I will show you how to arrange multiple screens in react-navigation.

Read

React navigation Part 1: How to add react navigation 5.0 in React Native project

Navigation means managing the transition between multiple screens in mobile apps. For handling navigation in react native, one library is used called react-navigation. This is a feature-rich library with a lot of functionalities. In this post, we will show you how to add react-navigation to an existing react-native or expo project. project'

Read

Kotlin program to remove character at specific index of a String

String is immutable in Kotlin. If we want to change any character in a string, we can't directly change it. For that, we need to create one new string modifying the given string. In this tutorial, we will learn different ways to do that in Kotlin.

Read

How to transform an object in React Native (skew, scale, transform, rotate)

React native provides style properties to do 2D or 3D transformation of an object like skew, rotate, scale etc. But note that it will not change the layout size defined for that object. If you have any other objects nearby, it will overlap. To prevent this, you need to add margin or padding to the object.

Read

How to create circular buttons in React Native

This tutorial is to show you how we can create circular buttons in React Native. I will use TouchableOpacity for the button. Also, I will create this button as a separate component that can be used by passing different props values.

Read

React Native program to change the value of a text on button click

In this tutorial, I will show you how to change the value of a text dynamically in react native. We will use one button, on click we will change the value of a Text. For this example, I am using hook to manage state.

Read