├── .babelrc ├── .buckconfig ├── .flowconfig ├── .watchmanconfig ├── README.md ├── __tests__ ├── index.android.js └── index.ios.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── todo │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── demo.gif ├── index.android.js ├── index.ios.js ├── ios ├── todo.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── todo.xcscheme ├── todo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── todoTests │ ├── Info.plist │ └── todoTests.m ├── package.json └── src ├── actions ├── actionTypes.js └── todoActions.js ├── components ├── AddTodo │ └── index.js ├── Buttons │ ├── ButtonFilter.js │ └── ButtonIcon.js ├── Container │ └── index.js ├── ControlPanel │ └── index.js ├── EditTodo │ └── index.js ├── ListTodo │ ├── List.js │ └── index.js ├── LoginSignup │ ├── ButtonLogin.js │ ├── ButtonSignup.js │ ├── FormLogin.js │ ├── FormSignup.js │ ├── Login.js │ ├── Logo.js │ ├── Signup.js │ ├── ToLogin.js │ ├── ToSignup.js │ └── UserInput.js ├── Screens │ ├── Edit.js │ ├── Login.js │ ├── Main.js │ ├── Menu.js │ └── Signup.js ├── TopBar │ └── index.js ├── Visibility │ └── index.js └── index.js ├── icons ├── back.png ├── check.png ├── left-arrow.png ├── loading.gif ├── open_menu.png ├── password.png ├── plus.png ├── remove.png ├── star.png ├── uncheck.png ├── unstar.png └── username.png ├── images ├── bg.jpg └── logo.png ├── reducers ├── conditionReducer.js ├── formReducer.js ├── index.js ├── todoReducer.js ├── userDataReducer.js └── visibilityFilterReducer.js └── store └── configureStore.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/.flowconfig -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/__tests__/index.android.js -------------------------------------------------------------------------------- /__tests__/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/__tests__/index.ios.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/todo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/android/app/src/main/java/com/todo/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/todo/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/android/app/src/main/java/com/todo/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/demo.gif -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- 1 | import './index.android'; 2 | -------------------------------------------------------------------------------- /ios/todo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/ios/todo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/todo.xcodeproj/xcshareddata/xcschemes/todo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/ios/todo.xcodeproj/xcshareddata/xcschemes/todo.xcscheme -------------------------------------------------------------------------------- /ios/todo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/ios/todo/AppDelegate.h -------------------------------------------------------------------------------- /ios/todo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/ios/todo/AppDelegate.m -------------------------------------------------------------------------------- /ios/todo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/ios/todo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/todo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/ios/todo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/todo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/ios/todo/Info.plist -------------------------------------------------------------------------------- /ios/todo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/ios/todo/main.m -------------------------------------------------------------------------------- /ios/todoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/ios/todoTests/Info.plist -------------------------------------------------------------------------------- /ios/todoTests/todoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/ios/todoTests/todoTests.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/package.json -------------------------------------------------------------------------------- /src/actions/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/actions/actionTypes.js -------------------------------------------------------------------------------- /src/actions/todoActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/actions/todoActions.js -------------------------------------------------------------------------------- /src/components/AddTodo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/components/AddTodo/index.js -------------------------------------------------------------------------------- /src/components/Buttons/ButtonFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/components/Buttons/ButtonFilter.js -------------------------------------------------------------------------------- /src/components/Buttons/ButtonIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/components/Buttons/ButtonIcon.js -------------------------------------------------------------------------------- /src/components/Container/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/components/Container/index.js -------------------------------------------------------------------------------- /src/components/ControlPanel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/components/ControlPanel/index.js -------------------------------------------------------------------------------- /src/components/EditTodo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/components/EditTodo/index.js -------------------------------------------------------------------------------- /src/components/ListTodo/List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/components/ListTodo/List.js -------------------------------------------------------------------------------- /src/components/ListTodo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/components/ListTodo/index.js -------------------------------------------------------------------------------- /src/components/LoginSignup/ButtonLogin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/components/LoginSignup/ButtonLogin.js -------------------------------------------------------------------------------- /src/components/LoginSignup/ButtonSignup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/components/LoginSignup/ButtonSignup.js -------------------------------------------------------------------------------- /src/components/LoginSignup/FormLogin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/components/LoginSignup/FormLogin.js -------------------------------------------------------------------------------- /src/components/LoginSignup/FormSignup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/components/LoginSignup/FormSignup.js -------------------------------------------------------------------------------- /src/components/LoginSignup/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/components/LoginSignup/Login.js -------------------------------------------------------------------------------- /src/components/LoginSignup/Logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/components/LoginSignup/Logo.js -------------------------------------------------------------------------------- /src/components/LoginSignup/Signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/components/LoginSignup/Signup.js -------------------------------------------------------------------------------- /src/components/LoginSignup/ToLogin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/components/LoginSignup/ToLogin.js -------------------------------------------------------------------------------- /src/components/LoginSignup/ToSignup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/components/LoginSignup/ToSignup.js -------------------------------------------------------------------------------- /src/components/LoginSignup/UserInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/components/LoginSignup/UserInput.js -------------------------------------------------------------------------------- /src/components/Screens/Edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/components/Screens/Edit.js -------------------------------------------------------------------------------- /src/components/Screens/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/components/Screens/Login.js -------------------------------------------------------------------------------- /src/components/Screens/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/components/Screens/Main.js -------------------------------------------------------------------------------- /src/components/Screens/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/components/Screens/Menu.js -------------------------------------------------------------------------------- /src/components/Screens/Signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/components/Screens/Signup.js -------------------------------------------------------------------------------- /src/components/TopBar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/components/TopBar/index.js -------------------------------------------------------------------------------- /src/components/Visibility/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/components/Visibility/index.js -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/icons/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/icons/back.png -------------------------------------------------------------------------------- /src/icons/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/icons/check.png -------------------------------------------------------------------------------- /src/icons/left-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/icons/left-arrow.png -------------------------------------------------------------------------------- /src/icons/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/icons/loading.gif -------------------------------------------------------------------------------- /src/icons/open_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/icons/open_menu.png -------------------------------------------------------------------------------- /src/icons/password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/icons/password.png -------------------------------------------------------------------------------- /src/icons/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/icons/plus.png -------------------------------------------------------------------------------- /src/icons/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/icons/remove.png -------------------------------------------------------------------------------- /src/icons/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/icons/star.png -------------------------------------------------------------------------------- /src/icons/uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/icons/uncheck.png -------------------------------------------------------------------------------- /src/icons/unstar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/icons/unstar.png -------------------------------------------------------------------------------- /src/icons/username.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/icons/username.png -------------------------------------------------------------------------------- /src/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/images/bg.jpg -------------------------------------------------------------------------------- /src/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/images/logo.png -------------------------------------------------------------------------------- /src/reducers/conditionReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/reducers/conditionReducer.js -------------------------------------------------------------------------------- /src/reducers/formReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/reducers/formReducer.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/reducers/todoReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/reducers/todoReducer.js -------------------------------------------------------------------------------- /src/reducers/userDataReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/reducers/userDataReducer.js -------------------------------------------------------------------------------- /src/reducers/visibilityFilterReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/reducers/visibilityFilterReducer.js -------------------------------------------------------------------------------- /src/store/configureStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/komaldeep/React-native-Todo-with-firebase/HEAD/src/store/configureStore.js --------------------------------------------------------------------------------