Skip to content
Open
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
node_modules/**/*
.expo/*
npm-debug.*
cache/**
coverage/**/*
22 changes: 2 additions & 20 deletions App.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,3 @@
import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
import App from './src/App';

export default class App extends React.Component {
render() {
return (
<View style={styles.container}>
<Text>Open up App.js to start working on your app!</Text>
</View>
);
}
}

const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});
export default App;
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
A react native application with todo implementation.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We generally add TODO now you have implemented. 😅

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

😅

7 changes: 7 additions & 0 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"packagerOpts": {
"sourceExts": [
"ts",
"tsx"
],
"transformer": "node_modules/react-native-typescript-transformer/index.js"
},
"updates": {
"fallbackToCacheTimeout": 0
},
Expand Down
Loading