React Native – Switch
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 - 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…
View is the most common element in React Native. You can consider it as an equivalent of the div element used in web development. Use Cases Let us now see a few…
This topic is about React Native - Animations. In this chapter, we will show you how to use LayoutAnimation in React Native. Animations Component We will set myStyle as a property of the state.…
This chapter is about React Native - Buttons. In this chapter, we will show you touchable components in react Native. We call them 'touchable' because they offer built in animations…
This chapter is about React Native - HTTP. In this chapter, we will show you how to use fetch for handling network requests. App.js import React from 'react'; import HttpExample from './http_example.js'…