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, { PropTypes } from 'react'; | |
| import { View, Image, ScrollView, TouchableHighlight, Text, Animated } from 'react-native'; | |
| import images from '../../config/images'; | |
| import Icon from 'react-native-vector-icons/FontAwesome'; | |
| import styles from './styles'; | |
| import Loading from '../../components/Loading'; | |
| import settings from '../../config/settings'; | |
| export const HEADER_MAX_HEIGHT = 200; | |
| const HEADER_MIN_HEIGHT = 0; |
NewerOlder