import React, { useState } from 'react'
import { StyleSheet, Text, View, TouchableOpacity, Image, FlatList } from 'react-native'
export default Blog = () => {
const data = [
{
id: 1,
title: 'Lorem ipsum dolor',
time: '2018-08-01 12:15 pm',
image: 'https://bootdey.com/image/400x200/FFB6C1/000000',
description: 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean ligula...',
},
{
id: 2,
title: 'Sit amet, consectetuer',
time: '2018-08-12 12:00 pm',
image: 'https://bootdey.com/image/400x200/7B68EE/000000',
description: 'Lorem dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula...',
},
{
id: 3,
title: 'Dipiscing elit. Aenean ',
time: '2017-08-05 12:21 pm',
image: 'https://bootdey.com/image/400x200/000080/000000',
description: 'Lorem ipsum dolor sit , consectetuer elit. Aenean commodo ligula...',
},
{
id: 4,
title: 'Commodo ligula eget dolor.',
time: '2015-08-12 12:00 pm',
image: 'https://bootdey.com/image/400x200/48D1CC/000000',
description:
'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula...',
},
{
id: 5,
title: 'Aenean massa. Cum sociis',
time: '2013-06-12 12:11 pm',
image: 'https://bootdey.com/image/400x200/9370DB/000000',
description: 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. commodo ligula...',
},
{
id: 6,
title: 'Natoque penatibus et magnis',
time: '2018-08-12 12:56 pm',
image: 'https://bootdey.com/image/400x200/DA70D6/000000',
description: 'Lorem ipsum sit amet, consectetuer adipiscing elit. Aenean commodo ligula...',
},
{
id: 7,
title: 'Dis parturient montes, nascetur',
time: '2018-08-12 12:33 pm',
image: 'https://bootdey.com/image/400x200/DDA0DD/000000',
description:
'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula...',
},
{
id: 8,
title: 'Ridiculus mus. Donec quam',
time: '2018-06-12 12:44 pm',
image: 'https://bootdey.com/image/400x200/4169E1/000000',
description: 'Lorem ipsum sit amet, consectetuer adipiscing elit. commodo ligula...',
},
{
id: 9,
title: 'Felis, ultricies nec, pellentesque',
time: '2012-07-12 12:23 pm',
image: 'https://bootdey.com/image/400x200/FA8072/000000',
description: 'Lorem ipsum dolor sit amet, consectetuer elit. Aenean commodo ligula...',
},
]
const [posts, setPosts] = useState(data)
return (
<View style={styles.container}>
<FlatList
style={styles.list}
data={posts}
keyExtractor={item => {
return item.id
}}
ItemSeparatorComponent={() => {
return <View style={styles.separator} />
}}
renderItem={post => {
const item = post.item
return (
<View style={styles.card}>
<Image style={styles.cardImage} source={{ uri: item.image }} />
<View style={styles.cardHeader}>
<View>
<Text style={styles.title}>{item.title}</Text>
<Text style={styles.description}>{item.description}</Text>
<View style={styles.timeContainer}>
<Image
style={styles.iconData}
source={{ uri: 'https://img.icons8.com/color/96/3498db/calendar.png' }}
/>
<Text style={styles.time}>{item.time}</Text>
</View>
</View>
</View>
<View style={styles.cardFooter}>
<View style={styles.socialBarContainer}>
<View style={styles.socialBarSection}>
<TouchableOpacity style={styles.socialBarButton}>
<Image
style={styles.icon}
source={{ uri: 'https://img.icons8.com/material/96/2ecc71/visible.png' }}
/>
<Text style={styles.socialBarLabel}>78</Text>
</TouchableOpacity>
</View>
<View style={styles.socialBarSection}>
<TouchableOpacity style={styles.socialBarButton}>
<Image
style={styles.icon}
source={{ uri: 'https://img.icons8.com/ios-glyphs/75/2ecc71/comments.png' }}
/>
<Text style={styles.socialBarLabel}>25</Text>
</TouchableOpacity>
</View>
</View>
</View>
</View>
)
}}
/>
</View>
)
}
const styles = StyleSheet.create({
container: {
flex: 1,
marginTop: 20,
},
list: {
paddingHorizontal: 17,
backgroundColor: '#E6E6E6',
},
separator: {
marginTop: 10,
},
/******** card **************/
card: {
shadowColor: '#00000021',
shadowOffset: {
width: 2,
},
shadowOpacity: 0.5,
shadowRadius: 4,
marginVertical: 8,
backgroundColor: 'white',
},
cardHeader: {
paddingVertical: 17,
paddingHorizontal: 16,
borderTopLeftRadius: 1,
borderTopRightRadius: 1,
flexDirection: 'row',
justifyContent: 'space-between',
},
cardContent: {
paddingVertical: 12.5,
paddingHorizontal: 16,
},
cardFooter: {
flexDirection: 'row',
justifyContent: 'space-between',
paddingTop: 12.5,
paddingBottom: 25,
paddingHorizontal: 16,
borderBottomLeftRadius: 1,
borderBottomRightRadius: 1,
backgroundColor: '#EEEEEE',
},
cardImage: {
flex: 1,
height: 150,
width: null,
},
/******** card components **************/
title: {
fontSize: 18,
flex: 1,
},
description: {
fontSize: 15,
color: '#888',
flex: 1,
marginTop: 5,
marginBottom: 5,
},
time: {
fontSize: 13,
color: '#808080',
marginTop: 5,
},
icon: {
width: 25,
height: 25,
},
iconData: {
width: 15,
height: 15,
marginTop: 5,
marginRight: 5,
},
timeContainer: {
flexDirection: 'row',
},
/******** social bar ******************/
socialBarContainer: {
justifyContent: 'center',
alignItems: 'center',
flexDirection: 'row',
flex: 1,
},
socialBarSection: {
justifyContent: 'center',
flexDirection: 'row',
flex: 1,
},
socialBarlabel: {
marginLeft: 8,
alignSelf: 'flex-end',
justifyContent: 'center',
},
socialBarButton: {
flexDirection: 'row',
justifyContent: 'center',
alignItems: 'center',
},
})
About this react-native template
This react-native template, list of blog posts, was published on Nov 29th 2017, 18:03 by Bootdey Admin and it is free.
We hope you will enjoy this awesome react-native template and stay tuned for the latest updates, we believe it will save your precious time and gives trendy look to your next application.
This template currectly have 7.7K views, Using this react-native template you have the following benefits:
Example Screens
You can jump start your development with our pre-built example, all you need to do is copy the code and execute it, You can also show it to your customers so that they have an idea of the final result.
Cross-platform for mobile development
This template was developed for Android and iOS.
Simple Integration
This template can be simply integrated on existing projects and new ones too, all you need to do is copy the code and start working.
Fully coded view
this is a functional example, You will save a lot of time going from prototyping to full-functional code.