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 Axios from 'axios'; | |
| import Expo from 'expo'; | |
| import { ScrollView, SafeAreaView, StyleSheet, Text, View, AsyncStorage, Image } from 'react-native'; | |
| import { NavigationActions } from 'react-navigation'; | |
| import { AVATAR_URL, THEME_COLOR, asyncStore } from '../constants'; | |
| const styles = StyleSheet.create({ | |
| drawer: { | |
| flex: 1, |
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 { createStackNavigator, createDrawerNavigator, createSwitchNavigator } from 'react-navigation'; | |
| import FingerPrintScreen from './src/components/FingerPrint'; | |
| import LoginScreen from './src/components/Login'; | |
| import DrawerContainer from './src/components/DrawerContainer'; | |
| import AuthLoadingScreen from './src/components/AuthLoading'; | |
| import DashboardScreen from './src/components/Dashboard'; | |
| import { View, Image, Button, Text, StyleSheet, TouchableOpacity } from 'react-native'; | |
| import Expo from 'expo'; | |
| import { Entypo } from '@expo/vector-icons' |
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
| var express = require('express'), | |
| session = require('express-session'), | |
| bodyparser = require('body-parser'), | |
| cors = require('cors'), | |
| mongoose = require('mongoose'), | |
| morgan = require('morgan'), | |
| passport = require('passport'), | |
| flash = require('connect-flash'), | |
| routes = require('./server/controller/index.js'), | |
| cons = require('consolidate'), |
NewerOlder