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…
Introduction The class FocusAdapter is an abstract (adapter) class for receiving keyboard focus events. All methods of this class are empty. This class is a convenient class for creating listener objects. Class…
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…
Adapters are abstract classes for receiving various events. The methods in these classes are empty. These classes exists as convenience for creating listener objects. AWT Adapters: Following is the list…
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…