Success confirmation

Let's start by implementing a modal view that's displayed as the result of the user successfully performing an action. Here's the Modal component, which is used to show the user a success confirmation:

import React from 'react';import PropTypes from 'prop-types';import { View, Text, Modal } from 'react-native';import styles from './styles';// Uses "<Modal>" to display the underlying view// on top of the current view. Properties passed to// this component are also passed to the modal.const ConfirmationModal = props => (  <Modal {...props}>    {/* Slightly confusing, but we need an inner and         an outer "<View>" to style the height of the         modal correctly. */}    <View style={styles.modalContainer}> <View style={styles.modalInner}> ...
..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
18.119.172.146