/** @type {AppStorage} */ import React, { Component } from 'react'; import { SafeAreaView } from 'react-navigation'; import Ionicons from 'react-native-vector-icons/Ionicons'; import { LinearGradient } from 'expo'; import { Icon, Button, FormLabel, FormInput, Card, Text, Header, List, ListItem } from 'react-native-elements'; import { TouchableOpacity, ActivityIndicator, View, StyleSheet, Dimensions, Image } from 'react-native'; import Carousel from 'react-native-snap-carousel'; let loc = require('./loc/'); /** @type {AppStorage} */ let BlueApp = require('./BlueApp'); const { height, width } = Dimensions.get('window'); const aspectRatio = height / width; let isIpad; if (aspectRatio > 1.6) { isIpad = false; } else { isIpad = true; } export class BlueButton extends Component { render() { return (