Skip to content

Commit

Permalink
finished v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
milon27 committed Jul 17, 2021
1 parent b899480 commit 8b2cc33
Show file tree
Hide file tree
Showing 57 changed files with 3,138 additions and 21 deletions.
11 changes: 11 additions & 0 deletions .expo-shared/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
> Why do I have a folder named ".expo-shared" in my project?
The ".expo-shared" folder is created when running commands that produce state that is intended to be shared with all developers on the project. For example, "npx expo-optimize".

> What does the "assets.json" file contain?
The "assets.json" file describes the assets that have been optimized through "expo-optimize" and do not need to be processed again.

> Should I commit the ".expo-shared" folder?
Yes, you should share the ".expo-shared" folder with your collaborators.
12 changes: 12 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// Workspace settings
{
// The following will hide the js and map files in the editor
"files.exclude": {
".expo": true,
".expo-shared": true,
"android": true,
"node_modules": true,
"package-lock.json": true,
"**/*.map": true
}
}
39 changes: 22 additions & 17 deletions App.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,26 @@
import { StatusBar } from 'expo-status-bar';
import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
import 'react-native-gesture-handler';

import React, { useState, useEffect, useContext } from 'react';
import MainContext, { DispatchContext } from './src/utils/context/MainContext';
import AppNavContainer from './src/components/navigation/AppNavContainer';
import axios from 'axios'
import Define from './src/utils/helpers/Define';


//axios setup
axios.defaults.baseURL = Define.API_BASE_URL
axios.defaults.withCredentials = true

export default function App() {



return (
<View style={styles.container}>
<Text>Open up App.js to start working on your app!</Text>
<StatusBar style="auto" />
</View>
<>

<MainContext>
<AppNavContainer />
</MainContext>
</>
);
}

const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});
}
8 changes: 5 additions & 3 deletions app.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"expo": {
"name": "password-manager",
"name": "Password Manager",
"slug": "password-manager",
"version": "1.0.0",
"orientation": "portrait",
Expand All @@ -23,10 +23,12 @@
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#FFFFFF"
}
},
"package": "com.milon27.passwordmanager"
},
"web": {
"favicon": "./assets/favicon.png"
}
},
"description": ""
}
}
Binary file modified assets/adaptive-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/splash.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions installation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
```
expo install @react-native-async-storage/async-storage
```
Loading

0 comments on commit 8b2cc33

Please sign in to comment.