├── .buckconfig ├── .eslintrc.js ├── .eslintrc.json ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .vscode └── settings.json ├── .watchmanconfig ├── App.js ├── README.md ├── __tests__ └── App-test.js ├── actions ├── alarm.js └── index.js ├── android ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── index.android.bundle │ │ ├── java │ │ └── com │ │ │ └── alarmreduxapp │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── drawable-mdpi │ │ ├── node_modules_reactnativeratings_src_images_airbnbstar.png │ │ ├── node_modules_reactnativeratings_src_images_airbnbstarselected.png │ │ ├── node_modules_reactnativeratings_src_images_bell.png │ │ ├── node_modules_reactnativeratings_src_images_heart.png │ │ ├── node_modules_reactnativeratings_src_images_rocket.png │ │ └── node_modules_reactnativeratings_src_images_star.png │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── raw │ │ ├── app.json │ │ ├── node_modules_reactnativevectoricons_glyphmaps_antdesign.json │ │ ├── node_modules_reactnativevectoricons_glyphmaps_entypo.json │ │ ├── node_modules_reactnativevectoricons_glyphmaps_evilicons.json │ │ ├── node_modules_reactnativevectoricons_glyphmaps_feather.json │ │ ├── node_modules_reactnativevectoricons_glyphmaps_fontawesome.json │ │ ├── node_modules_reactnativevectoricons_glyphmaps_foundation.json │ │ ├── node_modules_reactnativevectoricons_glyphmaps_ionicons.json │ │ ├── node_modules_reactnativevectoricons_glyphmaps_materialcommunityicons.json │ │ ├── node_modules_reactnativevectoricons_glyphmaps_materialicons.json │ │ ├── node_modules_reactnativevectoricons_glyphmaps_octicons.json │ │ ├── node_modules_reactnativevectoricons_glyphmaps_simplelineicons.json │ │ └── node_modules_reactnativevectoricons_glyphmaps_zocial.json │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── babel.config.js ├── components ├── ListAlarms.js └── TimePicker.js ├── images ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png └── 6.png ├── index.js ├── ios ├── AlarmReduxApp-tvOS │ └── Info.plist ├── AlarmReduxApp-tvOSTests │ └── Info.plist ├── AlarmReduxApp.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── AlarmReduxApp-tvOS.xcscheme │ │ └── AlarmReduxApp.xcscheme ├── AlarmReduxApp │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m ├── AlarmReduxAppTests │ ├── AlarmReduxAppTests.m │ └── Info.plist └── Podfile ├── metro.config.js ├── package.json ├── reducers └── alarmReducer.js └── store └── index.js /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/App.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /actions/alarm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/actions/alarm.js -------------------------------------------------------------------------------- /actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/actions/index.js -------------------------------------------------------------------------------- /android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/.project -------------------------------------------------------------------------------- /android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/index.android.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/main/assets/index.android.bundle -------------------------------------------------------------------------------- /android/app/src/main/java/com/alarmreduxapp/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/main/java/com/alarmreduxapp/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/alarmreduxapp/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/main/java/com/alarmreduxapp/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_airbnbstar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_airbnbstar.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_airbnbstarselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_airbnbstarselected.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_bell.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_heart.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_rocket.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_star.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/raw/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/main/res/raw/app.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_antdesign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_antdesign.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_entypo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_entypo.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_evilicons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_evilicons.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_feather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_feather.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_fontawesome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_fontawesome.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_foundation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_foundation.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_ionicons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_ionicons.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_materialcommunityicons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_materialcommunityicons.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_materialicons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_materialicons.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_octicons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_octicons.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_simplelineicons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_simplelineicons.json -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_zocial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_zocial.json -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/babel.config.js -------------------------------------------------------------------------------- /components/ListAlarms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/components/ListAlarms.js -------------------------------------------------------------------------------- /components/TimePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/components/TimePicker.js -------------------------------------------------------------------------------- /images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/images/1.png -------------------------------------------------------------------------------- /images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/images/2.png -------------------------------------------------------------------------------- /images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/images/3.png -------------------------------------------------------------------------------- /images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/images/4.png -------------------------------------------------------------------------------- /images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/images/5.png -------------------------------------------------------------------------------- /images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/images/6.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/index.js -------------------------------------------------------------------------------- /ios/AlarmReduxApp-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/ios/AlarmReduxApp-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/AlarmReduxApp-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/ios/AlarmReduxApp-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/AlarmReduxApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/ios/AlarmReduxApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/AlarmReduxApp.xcodeproj/xcshareddata/xcschemes/AlarmReduxApp-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/ios/AlarmReduxApp.xcodeproj/xcshareddata/xcschemes/AlarmReduxApp-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/AlarmReduxApp.xcodeproj/xcshareddata/xcschemes/AlarmReduxApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/ios/AlarmReduxApp.xcodeproj/xcshareddata/xcschemes/AlarmReduxApp.xcscheme -------------------------------------------------------------------------------- /ios/AlarmReduxApp/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/ios/AlarmReduxApp/AppDelegate.h -------------------------------------------------------------------------------- /ios/AlarmReduxApp/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/ios/AlarmReduxApp/AppDelegate.m -------------------------------------------------------------------------------- /ios/AlarmReduxApp/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/ios/AlarmReduxApp/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/AlarmReduxApp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/ios/AlarmReduxApp/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/AlarmReduxApp/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/ios/AlarmReduxApp/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/AlarmReduxApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/ios/AlarmReduxApp/Info.plist -------------------------------------------------------------------------------- /ios/AlarmReduxApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/ios/AlarmReduxApp/main.m -------------------------------------------------------------------------------- /ios/AlarmReduxAppTests/AlarmReduxAppTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/ios/AlarmReduxAppTests/AlarmReduxAppTests.m -------------------------------------------------------------------------------- /ios/AlarmReduxAppTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/ios/AlarmReduxAppTests/Info.plist -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/ios/Podfile -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/package.json -------------------------------------------------------------------------------- /reducers/alarmReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/reducers/alarmReducer.js -------------------------------------------------------------------------------- /store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/HEAD/store/index.js --------------------------------------------------------------------------------