Skip to content

Commit

Permalink
mi primer commit
Browse files Browse the repository at this point in the history
  • Loading branch information
sergio7174 committed Feb 12, 2024
0 parents commit 3b653be
Show file tree
Hide file tree
Showing 67 changed files with 22,396 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files

# dependencies
node_modules/

# Expo
.expo/
dist/
web-build/

# Native
*.orig.*
*.jks
*.p8
*.p12
*.key
*.mobileprovision

# Metro
.metro-health-check*

# debug
npm-debug.*
yarn-debug.*
yarn-error.*

# macOS
.DS_Store
*.pem

# local env files
.env*.local

# typescript
*.tsbuildinfo
35 changes: 35 additions & 0 deletions App.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
// react query
import { QueryClientProvider, QueryClient } from "react-query";

// providers

import { Provider } from "react-redux";
import { store } from "./src/redux/store";
import FlashMessage from "react-native-flash-message";
import NewNote from "screens/Note";




// navigation
import Navigation from "./src/navigation/Navigation";
// tailwind Provider
import './output.css';

const client = new QueryClient();


const App = () => {
return (
<>
<Provider store={store}>
<QueryClientProvider client={client}>
<Navigation />
</QueryClientProvider>
</Provider>
<FlashMessage position="top"/>
</>
);
};

export default App;
Binary file added PROJECT IMAGES/IMAGE01.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added PROJECT IMAGES/IMAGE02.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added PROJECT IMAGES/IMAGE03.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added PROJECT IMAGES/IMAGE04.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions app.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"expo": {
"plugins": ["@react-native-google-signin/google-signin"],
"android": {
"googleServicesFile": "./google-services.json"
},
"ios": {
"googleServicesFile": "./GoogleService-Info.plist"
}
}
}
Binary file added 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 added 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 added 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 added 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.
20 changes: 20 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
module.exports = function(api) {
api.cache(true);
return {
presets: ['module:metro-react-native-babel-preset'],
plugins: [["nativewind/babel"],
[
'module-resolver',
{
root: ['./src'],
extensions: ['.ios.js', '.android.js', '.js', '.ts', '.tsx', '.json','.jsx'],
alias: {
tests: ['./tests/'],
"@components": "./src/components",
}
}
]
]

};
};
22 changes: 22 additions & 0 deletions babel.configOld.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
module.exports = function(api) {
api.cache(true);
return {
presets: ['module:metro-react-native-babel-preset'],
plugins: ["react-native-reanimated/plugin",
[
'module-resolver',
{
root: ['./src'],
extensions: ['.ios.js', '.android.js', '.js', '.ts', '.tsx', '.json'],
alias: {
tests: ['./tests/'],
"@components": "./src/components",
}
}
]
]

};
};


1 change: 1 addition & 0 deletions global.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/// <reference types="nativewind/types" />
5 changes: 5 additions & 0 deletions input.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

.color{color:rgb(176, 214, 245)}
Loading

0 comments on commit 3b653be

Please sign in to comment.