UNPKG

react-native-awesome-card-io

Version:

A complete and cross-platform React Native component for card.io

30 lines (26 loc) 569 B
import React from 'react' import { View, Text, StyleSheet } from 'react-native' const styles = StyleSheet.create({ container: { width: 120, height: 20, backgroundColor: '#ffbcbc', borderWidth: 1, borderColor: 'red', alignItems: 'center', justifyContent: 'center', }, text: { color: '#333333', margin: 5, fontSize: 10, }, }) const CardIOView = () => ( <View style={styles.container}> <Text style={styles.text}> CardIOView is not supported on this platform! </Text> </View> ) export default CardIOView