How to set Image as Background for a Screen in React Native

The mobile app user interface should be made beautiful to attract the attention of its users. In some scenarios, setting an image as the background for a screen can make the app looks more appealing, and cool. In this blog post, let’s check how to make an image background for a screen in react native….

How to Navigate from One Screen to Another in Flutter

How to Navigate from One Screen to Another in Flutter

Navigation is a very important aspect of mobile apps. Literally, we can’t create helpful mobile apps without navigation. In this blog post, let’s check how to navigate between screens in Flutter. We call full-screen views of a mobile app the screens, but in Flutter, they are called routes. The navigation in Flutter is done by…

How to Convert View into Custom Shapes like Square, Rectangle, Circle and Triangle

A View is the most fundamental component for building the user interface of a React Native mobile app. The View acts as a container and it can have any number of children. In this blog post, let’s check how to convert or show View components as different custom shapes such as square, rectangle, circle, triangle,…

How to Add or Remove TextInput Dynamically and get Values in React Native

In this blog post, I am going to write about how to dynamically add or remove the TextInput component and get corresponding values from each text input in react native. In this react native dynamic TextInput example, I have three buttons namely add, remove and get values. Pressing add button will add a TextInput component…

How to Show Circular Progress Indicator in Flutter

A progress indicator is really helpful as it lets the user some processes are ongoing inside the mobile app. Here, in this blog post, let’s check how to show an indeterminate circular progress indicator in your Flutter app. The CircularProgressIndicator widget helps to create circular progress indicators easily in Flutter. See the code snippet given…