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
// i.d.R. 3 Blöcke | |
// 1) imports | |
// ES 2015! | |
import React, { Component } from 'react'; | |
// verwendete UI-Komponenten und APIs importieren | |
import { Button, StyleSheet, Text, View } from 'react-native'; | |
// 2) Komponente |
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
const data = [ | |
{ | |
text: | |
'Probleme kann man niemals mit derselben Denkweise lösen, durch die sie entstanden sind.', | |
author: 'Albert Einstein' | |
}, | |
{ | |
text: | |
'Man braucht nichts im Leben zu fürchten, man muss nur alles verstehen.', | |
author: 'Marie Curie' |
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 React, { Component } from 'react'; | |
import { Button, StyleSheet, Text, View } from 'react-native'; | |
const data = [ | |
{ | |
text: | |
'Probleme kann man niemals mit derselben Denkweise lösen, durch die sie entstanden sind.', | |
author: 'Albert Einstein' | |
}, | |
{ |
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 React, { Component } from 'react'; | |
import { StyleSheet, Text, View } from 'react-native'; | |
export default class Quote extends Component { | |
render() { | |
return <Text>Hallo!!!!!!!!!!!</Text>; | |
} | |
} |
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 React, { Component } from 'react'; | |
import { Button, StyleSheet, View } from 'react-native'; | |
import Quote from './js/components/Quote'; | |
const data = [ | |
{ | |
text: | |
'Probleme kann man niemals mit derselben Denkweise lösen, durch die sie entstanden sind.', | |
author: 'Albert Einstein' |
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 React, { Component } from 'react'; | |
import { StyleSheet, Text, View } from 'react-native'; | |
export default class Quote extends Component { | |
render() { | |
return ( | |
<View style={styles.container}> | |
<Text style={styles.text}>{this.props.text}</Text> | |
<Text style={styles.author}>— {this.props.author}</Text> | |
</View> |
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 React, { Component } from 'react'; | |
import { Button, Modal, StyleSheet, Text, View } from 'react-native'; | |
import Quote from './js/components/Quote'; | |
const data = [ | |
{ | |
text: | |
'Probleme kann man niemals mit derselben Denkweise lösen, durch die sie entstanden sind.', | |
author: 'Albert Einstein' | |
}, |
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 React, { Component } from 'react'; | |
import { Button, StyleSheet, View } from 'react-native'; | |
import Quote from './js/components/Quote'; | |
import NewQuote from './js/components/NewQuote'; | |
const data = [ | |
{ | |
text: | |
'Probleme kann man niemals mit derselben Denkweise lösen, durch die sie entstanden sind.', | |
author: 'Albert Einstein' |
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 React, { Component } from 'react'; | |
import { Modal, StyleSheet, Text, TextInput, View } from 'react-native'; | |
export default class NewQuote extends Component { | |
render() { | |
return ( | |
<Modal | |
visible={this.props.visible} | |
onRequestClose={this.props.onRequestClose} | |
> |
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 React, { Component } from 'react'; | |
import { Button, StyleSheet, View } from 'react-native'; | |
import Quote from './js/components/Quote'; | |
import NewQuote from './js/components/NewQuote'; | |
const data = [ | |
{ | |
text: | |
'Probleme kann man niemals mit derselben Denkweise lösen, durch die sie entstanden sind.', | |
author: 'Albert Einstein' |