Card
Simple Card Item
<Card>
<CardContent padding={15}>
<H3>React Tutorial For Beginners</H3>
<P>This tutorial is considerably created for those who have at least basic knowledge of HTML, CSS, JavaScript, ES6, DOM, node, and npm.</P>
</CardContent>
<CardFooter padding={15}>
<Left>
<Btn label={'Read more'} onPress={() => console.log("do something")} />
</Left>
<Right></Right>
</CardFooter>
</Card>Card Item With Image
<Card>
<CardImage
source={{uri: 'http://intelvue.com/demo/app-template/item-3.jpg'}}
/>
<CardContent>
<H3>Card Title ...</H3>
<P>Card Description ...</P>
</CardContent>
<CardFooter>
<Left><P>Left</P></Left>
<Right><P>Right</P></Right>
</CardFooter>
</Card>Components
Last updated