import React from 'react'; import { ImageBackground, Image, StyleSheet, StatusBar, Dimensions, Platform, Linking } from 'react-native'; import { Block, Button, Text, theme } from 'galio-framework'; const { height, width } = Dimensions.get('screen'); import { Images, argonTheme } from '../constants/'; import { HeaderHeight } from "../constants/utils"; export default class Pro extends React.Component { render() { const { navigation } = this.props; return ( Argon Design System PRO Take advantage of all the features and screens made upon Galio Design System, coded on React Native for both. ); } } const styles = StyleSheet.create({ container: { backgroundColor: theme.COLORS.BLACK, marginTop: Platform.OS === 'android' ? -HeaderHeight : 0, }, padded: { paddingHorizontal: theme.SIZES.BASE * 2, zIndex: 3, position: 'absolute', bottom: Platform.OS === 'android' ? theme.SIZES.BASE * 2 : theme.SIZES.BASE * 3, }, button: { width: width - theme.SIZES.BASE * 4, height: theme.SIZES.BASE * 3, shadowRadius: 0, shadowOpacity: 0, }, pro: { backgroundColor: argonTheme.COLORS.INFO, paddingHorizontal: 8, marginLeft: 3, borderRadius: 4, height: 22, marginTop: 15 }, gradient: { zIndex: 1, position: 'absolute', bottom: 0, left: 0, right: 0, height: 66, }, });