React Native – AsyncStorage
This topic is about React Native - AsyncStorage. In this chapter, we will show you how to persist your data using AsyncStorage. Step 1: Presentation In this step, we will create…
This topic is about React Native - AsyncStorage. In this chapter, we will show you how to persist your data using AsyncStorage. Step 1: Presentation In this step, we will create…
This topic is about React Native - Geolocation. In this chapter, we will show you how to use Geolocation. Step 1: App.js import React from 'react' import GeolocationExample from './geolocation_example.js' const…
This chapter is about React Native - Alert. In this chapter, we will understand how to create custom Alert component. Step 1: App.js import React from 'react' import AlertExample from './alert_example.js' const…
In this chapter, we will talk about Text component in React Native. This component can be nested and it can inherit properties from parent to child. This can be useful in many…
This chapter is about React Native - Switch. In this chapter, we will explain the Switch component in a couple of steps. Step 1: Create File We will use the HomeContainer component for logic,…
This chapter is about React Native - Status Bar. In this chapter, we will show you how to control the status bar appearance in React Native. The Status bar is…
This chapter is aboout React Native - Picker. In this chapter, we will create simple Picker with two available options. Step 1: Create File Here, the App.js folder will be used as…
In this chapter we will show you how to use the activityindicator in React Native. Step 1: App App component will be used to import and show our ActivityIndicator. App.js import React…
In this chapter, we will show you how to use the modal component in React Native. Let us now create a new file: ModalExample.js We will put logic inside ModalExample. We can…
This chapter is about React Native - WebView. In this chapter, we will learn how to use WebView. It is used when you want to render web page to your…