-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
sergio7174
committed
Feb 12, 2024
0 parents
commit 3b653be
Showing
67 changed files
with
22,396 additions
and
0 deletions.
There are no files selected for viewing
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
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 |
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
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; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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" | ||
} | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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", | ||
} | ||
} | ||
] | ||
] | ||
|
||
}; | ||
}; |
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
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", | ||
} | ||
} | ||
] | ||
] | ||
|
||
}; | ||
}; | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/// <reference types="nativewind/types" /> |
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
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)} |
Oops, something went wrong.