Index

React Native

  1. Install Android Studio
  2. Introduction
  3. Navigation
    1. StackNavigator
    2. Login
    3. DrawerNavigator
    4. Custom Drawer
    5. Image
  4. Formik and Apollo Client
  5. Image Upload
  6. Alert
  7. Keyboard Avoiding View

Alert



//This is an example code to understand Alert// 
import React, { Component } from 'react';
//import react in our code. 
import { Alert, Button, View, StyleSheet } from 'react-native';


Alert.alert(
      //title
      'Hello',
      //body
      'I am three option alert. Do you want to cancel me ?',
      [
        {text: 'May be', onPress: () => console.log('May be Pressed')},
        {text: 'Yes', onPress: () => console.log('Yes Pressed')},
        {text: 'OK', onPress: () => console.log('OK Pressed')},
      ],
      { cancelable: true }
    );