Last active
August 26, 2022 13:01
-
-
Save happyharis/c8c21d8f6908fdfab4f23c6057b5322a to your computer and use it in GitHub Desktop.
PCMOB6 NotesScreenHome.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { | |
FlatList, | |
StyleSheet, | |
Text, | |
TouchableOpacity, | |
View, | |
} from "react-native"; | |
import React from "react"; | |
const posts = [ | |
{ | |
id: 1, | |
title: "Add NotesScreenHome.js file", | |
content: "Make sure you don't have any errors when copying this code", | |
}, | |
]; | |
export default function NotesScreenHome() { | |
function renderItem({ item }) { | |
return ( | |
<TouchableOpacity style={styles.noteCard} onPress={() => {}}> | |
<Text style={styles.noteCardTitle}>{item.title}</Text> | |
<Text style={styles.noteCardBodyText}> | |
{item.content.substring(0, 120)} | |
</Text> | |
</TouchableOpacity> | |
); | |
} | |
return ( | |
<View style={styles.container}> | |
<Text style={styles.title}>notes</Text> | |
<FlatList | |
data={posts} | |
renderItem={renderItem} | |
keyExtractor={(post) => post.id.toString()} | |
/> | |
<View style={{ flex: 1 }} /> | |
<TouchableOpacity style={styles.button} onPress={() => {}}> | |
<Text style={styles.buttonText}>Add Note</Text> | |
</TouchableOpacity> | |
</View> | |
); | |
} | |
const styles = StyleSheet.create({ | |
noteCard: { | |
borderColor: "gray", | |
borderWidth: 1, | |
padding: 15, | |
borderRadius: 5, | |
marginBottom: 15, | |
}, | |
noteCardTitle: { | |
fontSize: 13, | |
fontWeight: "500", | |
marginBottom: 7, | |
}, | |
noteCardBodyText: { | |
fontSize: 12, | |
fontWeight: "300", | |
}, | |
container: { | |
flex: 1, | |
backgroundColor: "#fff", | |
paddingTop: 100, | |
padding: 25, | |
}, | |
title: { | |
fontWeight: "bold", | |
fontSize: 40, | |
marginBottom: 20, | |
}, | |
button: { | |
backgroundColor: "black", | |
borderRadius: 15, | |
width: "100%", | |
}, | |
buttonText: { | |
textAlign: "center", | |
fontWeight: "400", | |
fontSize: 17, | |
padding: 20, | |
color: "white", | |
}, | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment