This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import PropTypes from 'prop-types'; | |
import { connect } from 'react-redux'; | |
import { StyleSheet, View, FlatList } from 'react-native'; | |
import Icon from 'react-native-vector-icons/FontAwesome'; | |
import { List, ListItem, SearchBar } from 'react-native-elements'; | |
import { Container, Content, Text, Button, Label } from 'native-base'; | |
import Spinner from 'react-native-loading-spinner-overlay'; | |
import { requestAttachedFacilities } from '../actions/pickFacility'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import PropTypes from 'prop-types'; | |
import { connect } from 'react-redux'; | |
import { StyleSheet, View, FlatList } from 'react-native'; | |
import Icon from 'react-native-vector-icons/FontAwesome'; | |
import { List, ListItem, SearchBar } from 'react-native-elements'; | |
import { Container, Content, Text, Button, Label } from 'native-base'; | |
import Spinner from 'react-native-loading-spinner-overlay'; | |
import { requestAttachedFacilities } from '../actions/pickFacility'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import PropTypes from 'prop-types'; | |
import { connect } from 'react-redux'; | |
import { StyleSheet, View, FlatList } from 'react-native'; | |
import Icon from 'react-native-vector-icons/FontAwesome'; | |
import { List, ListItem, SearchBar } from 'react-native-elements'; | |
import { Container, Content, Text, Button, Label } from 'native-base'; | |
import Spinner from 'react-native-loading-spinner-overlay'; | |
import { requestAttachedFacilities } from '../actions/pickFacility'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import PropTypes from 'prop-types'; | |
import { connect } from 'react-redux'; | |
import { StyleSheet, View, FlatList } from 'react-native'; | |
import Icon from 'react-native-vector-icons/FontAwesome'; | |
import { List, ListItem, SearchBar } from 'react-native-elements'; | |
import { Container, Content, Text, Button, Label } from 'native-base'; | |
import Spinner from 'react-native-loading-spinner-overlay'; | |
import { requestAttachedFacilities } from '../actions/pickFacility'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import PropTypes from 'prop-types'; | |
import { connect } from 'react-redux'; | |
import { StyleSheet, View, FlatList, TextInput } from 'react-native'; | |
import Icon from 'react-native-vector-icons/FontAwesome'; | |
import { Container, Content, Text, Button, Label, Header, Item, Input } from 'native-base'; | |
import Spinner from 'react-native-loading-spinner-overlay'; | |
import { requestAttachedFacilities } from '../actions/pickFacility'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import PropTypes from 'prop-types'; | |
import { connect } from 'react-redux'; | |
import { StyleSheet, View, FlatList, TextInput, TouchableHighlight } from 'react-native'; | |
import Icon from 'react-native-vector-icons/FontAwesome'; | |
import { Container, Content, Text, Button, Label, Item, Input } from 'native-base'; | |
import Spinner from 'react-native-loading-spinner-overlay'; | |
import { requestAttachedFacilities, seletedFacility } from '../actions/pickFacility'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import { Button, Icon } from 'native-base'; | |
import { StackNavigator, DrawerNavigator } from 'react-navigation'; | |
import { Animated, Easing } from 'react-native'; | |
// import NewPassword from '../screens/NewPassword'; | |
import Login from '../screens/Login'; | |
import Home from '../screens/HomeScreen'; | |
import DrawerContainer from '../components/Drawer/DrawerComponent'; | |
import ForgotPassword from '../screens/ForgotPassword'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
package="com.example.apicall.testapp"> | |
<application | |
android:allowBackup="true" | |
android:icon="@mipmap/ic_launcher" | |
android:label="@string/app_name" | |
android:roundIcon="@mipmap/ic_launcher_round" | |
android:supportsRtl="true" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example.apicall.testapp; | |
import android.os.Bundle; | |
import android.support.v7.app.AppCompatActivity; | |
import android.util.Log; | |
import android.view.View; | |
import android.widget.Button; | |
import android.widget.EditText; | |
import org.json.JSONException; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apply plugin: 'com.android.application' | |
android { | |
compileSdkVersion 26 | |
defaultConfig { | |
applicationId "com.example.apicall.testapp" | |
minSdkVersion 25 | |
targetSdkVersion 26 | |
versionCode 1 | |
versionName "1.0" |