UNPKG

react-native-elements

Version:
20 lines (14 loc) 479 B
import Expo from 'expo'; import React, { Component } from 'react'; import { View, ScrollView, StyleSheet, Platform } from 'react-native'; import { Text, Button, Icon } from 'react-native-elements'; import colors from 'HSColors'; import socialColors from 'HSSocialColors'; import fonts from 'HSFonts'; class ButtonsDetail extends Component { render() { const { navigation } = this.props; return <Text>Buttons detail view</Text>; } } export default ButtonsDetail;