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 { | |
| GiftedChat, | |
| SystemMessage, | |
| // ...all other imports | |
| } from "react-native-gifted-chat | |
| <GiftedChat | |
| // ...all other stuff |
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 AsyncStorage from '@react-native-community/async-storage'; | |
| import {Navigation} from 'react-native-navigation'; | |
| import {uniqBy} from 'lodash'; | |
| // using uuid/v4 to generate unique keys for each notification for FlatList etc. | |
| import uuidv4 from 'uuid/v4'; | |
| // AsyncStorage.clear(); | |
| export const handleNotifications = async (notification, condition, ref) => { | |
| console.log('COMING FROM ', ref); |
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
| [ | |
| {"name": "Αττικής", "location": [38.08333 ,23.5]}, | |
| {"name": "'Αγιος Νικόλαος Αθηνών'", "location": [38.005852, 23.729193]}, | |
| {"name": "Άγιος Ελευθέριος", "location": [38.021036, 23.729219]}, | |
| {"name": "Αθήνα κέντρο", "location": [37.980812, 23.724287]}, | |
| {"name": "Αμπελόκηποι", "location": [37.988734, 23.763039]}, | |
| {"name": "Αττική Αθηνών", "location": [37.997651, 23.721319]}, | |
| {"name": "Γκάζι", "location": [37.978538, 23.712526]}, | |
| {"name": "Γουδί", "location": [37.985828, 23.767172]}, | |
| {"name": "Ελαιώνας", "location": [38.007859, 23.667688]}, |
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 {ActivityIndicator, AsyncStorage, Dimensions, FlatList, LayoutAnimation, StyleSheet, Text, TouchableHighlight, TouchableOpacity, View, Alert, Platform} from 'react-native'; | |
| import Icon from 'react-native-vector-icons/Ionicons'; | |
| import {Card, CardImage, CardTitle} from 'react-native-material-cards'; | |
| import ActionButton from 'react-native-circular-action-menu'; | |
| import ImagePicker from 'react-native-image-crop-picker'; | |
| import {MaterialIndicator} from 'react-native-indicators'; | |
| import Storage from 'react-native-storage'; | |
| import {EventRegister} from 'react-native-event-listeners'; | |
| import shortid from 'shortid'; |
NewerOlder