-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
64 lines (58 loc) · 1.42 KB
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import React from 'react';
import { StyleSheet, SafeAreaView, View, FlatList } from 'react-native';
import { StatusBar } from 'expo-status-bar';
import Constants from 'expo-constants';
import Header from './components/Header';
import Stories from './components/Stories';
import Article from './components/Article';
import { articles } from './data';
export default function Instagram() {
const renderItem = ({ item }) => <Article item={item} />;
const renderHeader = () => (
<View style={styles.stories}>
<Stories />
</View>
);
const keyExtractor = (item) => item.id.toString();
return (
<SafeAreaView style={styles.container}>
<StatusBar style='dark' />
<View style={styles.header}>
<Header />
</View>
{/* https://reactnative.dev/docs/flatlist */}
<FlatList
data={articles}
renderItem={renderItem}
ListHeaderComponent={renderHeader}
keyExtractor={keyExtractor}
showsVerticalScrollIndicator={false}
/>
</SafeAreaView>
);
}
const BORDER_BOTTOM = {
borderBottomWidth: 1,
borderBottomColor: '#dbdbdb',
};
const styles = StyleSheet.create({
container: {
flex: 1,
paddingTop: Constants.statusBarHeight,
},
header: {
...BORDER_BOTTOM,
flexDirection: 'row',
justifyContent: 'space-between',
alignItems: 'center',
paddingHorizontal: 16,
height: 44,
},
stories: {
...BORDER_BOTTOM,
height: 104,
paddingVertical: 10,
paddingLeft: 8,
backgroundColor: '#fafafa',
},
});