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 { AppRegistry, StyleSheet, FlatList, ActivityIndicator, TouchableOpacity, TouchableHighlight, Text, View, Alert, Platform, Image, Dimensions } from 'react-native'; | |
import { getImageUrl } from '../../util/utility' | |
import { SwipeListView } from 'react-native-swipe-list-view'; | |
const { height, width } = Dimensions.get('window'); | |
import { connect } from 'react-redux'; | |
import * as actions from '../../actions'; | |
import { GlobalFile } from '../../constants/GlobalFile'; | |
import AsyncStorage from '@react-native-community/async-storage' |
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 { Text, View, Image, StyleSheet, TextInput, Dimensions, TouchableOpacity, TouchableHighlight } from 'react-native'; | |
import { KeyboardAvoidingView } from 'react-native'; | |
import { KeyboardAwareScrollView } from 'react-native-keyboard-aware-scroll-view' | |
import { ScrollView } from 'react-native-gesture-handler'; | |
import Modal from "react-native-modal"; | |
import SafeAreaView from 'react-native-safe-area-view'; | |
import CardView from 'react-native-cardview' | |
import { connect } from 'react-redux'; | |
import * as actions from '../../actions'; |
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 { | |
SafeAreaView, | |
StyleSheet, | |
ScrollView, | |
View, | |
Button, | |
Text, | |
StatusBar, | |
TouchableOpacity, Modal, |
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.stickmanmobile.engineroom.heatmiserneo.ui.customui; | |
import android.content.Context; | |
import android.content.res.TypedArray; | |
import android.graphics.Canvas; | |
import android.graphics.Color; | |
import android.graphics.Matrix; | |
import android.graphics.Paint; | |
import android.graphics.RectF; | |
import android.graphics.SweepGradient; |