├── .eslintrc ├── .expo-shared └── assets.json ├── .gitignore ├── App.js ├── AppNavigator.js ├── Notifications ├── cancelNotification.js ├── scheduleReminderNotification.js └── useNotifications.js ├── README.md ├── app.json ├── assets ├── adaptive-icon.png ├── favicon.png ├── icon.png └── splash.png ├── babel.config.js ├── components ├── ActionButton.js ├── FolderCard.js ├── Modal.js ├── NoteCard.js ├── NoteCardText.js ├── NoteOptionsActionSheet.js ├── NoteReminderModal.js ├── Notes.js └── NotesPageHeader.js ├── context └── context.jsx ├── eas.json ├── localStorageRef.txt ├── package.json ├── screens ├── AddNote.js ├── FolderNotes.js ├── Folders.js ├── Home.js ├── LabelsManager.js ├── NoteLabelsManager.js ├── NotesSelector.js ├── Trash.js ├── UpdateNote.js └── index.js ├── style └── theme.js └── utils ├── dateformat.js └── storage.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/.eslintrc -------------------------------------------------------------------------------- /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/.gitignore -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/App.js -------------------------------------------------------------------------------- /AppNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/AppNavigator.js -------------------------------------------------------------------------------- /Notifications/cancelNotification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/Notifications/cancelNotification.js -------------------------------------------------------------------------------- /Notifications/scheduleReminderNotification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/Notifications/scheduleReminderNotification.js -------------------------------------------------------------------------------- /Notifications/useNotifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/Notifications/useNotifications.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/app.json -------------------------------------------------------------------------------- /assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/assets/adaptive-icon.png -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/babel.config.js -------------------------------------------------------------------------------- /components/ActionButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/components/ActionButton.js -------------------------------------------------------------------------------- /components/FolderCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/components/FolderCard.js -------------------------------------------------------------------------------- /components/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/components/Modal.js -------------------------------------------------------------------------------- /components/NoteCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/components/NoteCard.js -------------------------------------------------------------------------------- /components/NoteCardText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/components/NoteCardText.js -------------------------------------------------------------------------------- /components/NoteOptionsActionSheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/components/NoteOptionsActionSheet.js -------------------------------------------------------------------------------- /components/NoteReminderModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/components/NoteReminderModal.js -------------------------------------------------------------------------------- /components/Notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/components/Notes.js -------------------------------------------------------------------------------- /components/NotesPageHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/components/NotesPageHeader.js -------------------------------------------------------------------------------- /context/context.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/context/context.jsx -------------------------------------------------------------------------------- /eas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/eas.json -------------------------------------------------------------------------------- /localStorageRef.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/localStorageRef.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/package.json -------------------------------------------------------------------------------- /screens/AddNote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/screens/AddNote.js -------------------------------------------------------------------------------- /screens/FolderNotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/screens/FolderNotes.js -------------------------------------------------------------------------------- /screens/Folders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/screens/Folders.js -------------------------------------------------------------------------------- /screens/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/screens/Home.js -------------------------------------------------------------------------------- /screens/LabelsManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/screens/LabelsManager.js -------------------------------------------------------------------------------- /screens/NoteLabelsManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/screens/NoteLabelsManager.js -------------------------------------------------------------------------------- /screens/NotesSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/screens/NotesSelector.js -------------------------------------------------------------------------------- /screens/Trash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/screens/Trash.js -------------------------------------------------------------------------------- /screens/UpdateNote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/screens/UpdateNote.js -------------------------------------------------------------------------------- /screens/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/screens/index.js -------------------------------------------------------------------------------- /style/theme.js: -------------------------------------------------------------------------------- 1 | export default { 2 | PRIMARY_COLOR: '#1d9bff' 3 | }; -------------------------------------------------------------------------------- /utils/dateformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/utils/dateformat.js -------------------------------------------------------------------------------- /utils/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahzaibhaider746/Note_App_React_Native_Expo/HEAD/utils/storage.js --------------------------------------------------------------------------------