We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Why Im getting this error while I already have my constructor?
` export default class testPoject extends Component { constructor(props) { super(props); this.state = {noteArray: []} }
render() {
let notes = this.state.noteArray.map((val, key) => { return <Note key={key} keyval={key} val={val} deleteMethod={ () => this.deleteNote(key)} /> }); return ( <View style={styles.container}> <View style={styles.header}> <Text style={styles.headerText}>TODO LIST </Text> </View> <ScrollView style={styles.scrollConainer}> </ScrollView> <View style={styles.footer}> <TouchableOpacity style={styles.addButton}> <Text style={styles.addButtonText}> + </Text> </TouchableOpacity> <TextInput style={styles.noteInputText} placeholder="> Note" placeholderTextColor="#FFF" underlineColorAndroid="transparent" numberOfLines = {3} /> </View> </View> );
}`
To have a better look at my code, you can take a look here: https://github.com/IsmaelEzequiel/Sample_React_Native_App/blob/master/index.android.js
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Why Im getting this error while I already have my constructor?
` export default class testPoject extends Component {
constructor(props) {
super(props);
this.state = {noteArray: []}
}
render() {
}`
To have a better look at my code, you can take a look here: https://github.com/IsmaelEzequiel/Sample_React_Native_App/blob/master/index.android.js
The text was updated successfully, but these errors were encountered: