This file contains hidden or 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 App extends Component { | |
| render() { | |
| return ( | |
| ); | |
| } | |
| } |
This file contains hidden or 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, StatusBar } from 'react-native'; | |
| import { LinearGradient } from 'expo-linear-gradient'; | |
| export default class App extends Component { | |
| render() { | |
| return ( | |
| <LinearGradient colors={['#004e92', '#000428']} style={{ flex: 1 }}> | |
| <StatusBar barStyle='light-content' /> | |
| </LinearGradient> |
This file contains hidden or 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, StatusBar, TextInput } from 'react-native'; | |
| import { LinearGradient } from 'expo-linear-gradient'; | |
| export default class App extends Component { | |
| render() { | |
| return ( | |
| <LinearGradient colors={['#004e92', '#000428']} style={{ flex: 1 }}> | |
| <StatusBar barStyle='light-content' /> | |
| <View> |
This file contains hidden or 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, StatusBar, TextInput } from 'react-native'; | |
| import { LinearGradient } from 'expo-linear-gradient'; | |
| export default class App extends Component { | |
| state = { | |
| inputValue: '' | |
| } |
This file contains hidden or 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, StatusBar, TextInput } from 'react-native'; | |
| import { LinearGradient } from 'expo-linear-gradient'; | |
| export default class App extends Component { | |
| state = { | |
| inputValue: '' | |
| } |
This file contains hidden or 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, StatusBar, TextInput, TouchableOpacity } from 'react-native'; | |
| import { LinearGradient } from 'expo-linear-gradient'; | |
| export default class App extends Component { | |
| state = { | |
| inputValue: '', | |
| todos: [] | |
| } |
This file contains hidden or 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, StatusBar, TextInput, TouchableOpacity, TouchableHighlight } from 'react-native'; | |
| import { LinearGradient } from 'expo-linear-gradient'; | |
| import Swipeable from 'react-native-swipeable-row'; | |
| export default class App extends Component { | |
| state = { | |
| inputValue: '', | |
| todos: [] |
This file contains hidden or 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, StatusBar, TextInput, TouchableOpacity, TouchableHighlight } from 'react-native'; | |
| import { LinearGradient } from 'expo-linear-gradient'; | |
| import Swipeable from 'react-native-swipeable-row'; | |
| export default class App extends Component { | |
| state = {...} | |
| changeText = value => { ... } | |
| addItem = () => { ... } |