├── .expo-shared └── assets.json ├── .gitignore ├── App.js ├── README.md ├── app.json ├── app ├── components │ ├── NotFound.js │ ├── Note.js │ ├── NoteDetail.js │ ├── NoteInputModal.js │ ├── RoundIconBtn.js │ └── SearchBar.js ├── contexts │ └── NoteProvider.js ├── misc │ └── colors.js └── screens │ ├── Intro.js │ └── NoteScreen.js ├── assets ├── adaptive-icon.png ├── favicon.png ├── icon.png ├── ndp_splash.png └── splash.png ├── babel.config.js └── package.json /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndpniraj/react-native-async-storage-note-app/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndpniraj/react-native-async-storage-note-app/HEAD/.gitignore -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndpniraj/react-native-async-storage-note-app/HEAD/App.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndpniraj/react-native-async-storage-note-app/HEAD/app.json -------------------------------------------------------------------------------- /app/components/NotFound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndpniraj/react-native-async-storage-note-app/HEAD/app/components/NotFound.js -------------------------------------------------------------------------------- /app/components/Note.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndpniraj/react-native-async-storage-note-app/HEAD/app/components/Note.js -------------------------------------------------------------------------------- /app/components/NoteDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndpniraj/react-native-async-storage-note-app/HEAD/app/components/NoteDetail.js -------------------------------------------------------------------------------- /app/components/NoteInputModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndpniraj/react-native-async-storage-note-app/HEAD/app/components/NoteInputModal.js -------------------------------------------------------------------------------- /app/components/RoundIconBtn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndpniraj/react-native-async-storage-note-app/HEAD/app/components/RoundIconBtn.js -------------------------------------------------------------------------------- /app/components/SearchBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndpniraj/react-native-async-storage-note-app/HEAD/app/components/SearchBar.js -------------------------------------------------------------------------------- /app/contexts/NoteProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndpniraj/react-native-async-storage-note-app/HEAD/app/contexts/NoteProvider.js -------------------------------------------------------------------------------- /app/misc/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndpniraj/react-native-async-storage-note-app/HEAD/app/misc/colors.js -------------------------------------------------------------------------------- /app/screens/Intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndpniraj/react-native-async-storage-note-app/HEAD/app/screens/Intro.js -------------------------------------------------------------------------------- /app/screens/NoteScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndpniraj/react-native-async-storage-note-app/HEAD/app/screens/NoteScreen.js -------------------------------------------------------------------------------- /assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndpniraj/react-native-async-storage-note-app/HEAD/assets/adaptive-icon.png -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndpniraj/react-native-async-storage-note-app/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndpniraj/react-native-async-storage-note-app/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/ndp_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndpniraj/react-native-async-storage-note-app/HEAD/assets/ndp_splash.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndpniraj/react-native-async-storage-note-app/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndpniraj/react-native-async-storage-note-app/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ndpniraj/react-native-async-storage-note-app/HEAD/package.json --------------------------------------------------------------------------------