├── .buckconfig ├── .env ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.js ├── LICENSE ├── README.md ├── __tests__ └── App-test.js ├── android ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── app │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.buildship.core.prefs │ ├── _BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── beta │ │ └── res │ │ │ └── values │ │ │ └── string.xml │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── dev │ │ └── res │ │ │ └── values │ │ │ └── string.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ └── fonts │ │ │ │ ├── LPMQ.ttf │ │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ │ ├── MaterialIcons.ttf │ │ │ │ ├── Roboto-Black.ttf │ │ │ │ ├── Roboto-Bold.ttf │ │ │ │ ├── Roboto-Medium.ttf │ │ │ │ ├── Roboto-Regular.ttf │ │ │ │ ├── Roboto-Thin.ttf │ │ │ │ ├── SimpleLineIcons.ttf │ │ │ │ └── Zocial.ttf │ │ ├── java │ │ │ └── com │ │ │ │ └── ihsan │ │ │ │ └── alquran │ │ │ │ └── mobile │ │ │ │ └── app │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── launch_screen.png │ │ │ ├── drawable-ldpi │ │ │ └── launch_screen.png │ │ │ ├── drawable-mdpi │ │ │ └── launch_screen.png │ │ │ ├── drawable-xhdpi │ │ │ └── launch_screen.png │ │ │ ├── drawable-xxhdpi │ │ │ └── launch_screen.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── launch_screen.png │ │ │ ├── layout │ │ │ └── launch_screen.xml │ │ │ ├── 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 │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── release │ │ └── res │ │ └── values │ │ └── string.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── app ├── Assets │ ├── Fonts │ │ ├── LPMQ.ttf │ │ ├── Roboto-Black.ttf │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-Medium.ttf │ │ ├── Roboto-Regular.ttf │ │ ├── Roboto-Thin.ttf │ │ └── arabic-font.ttf │ └── Images │ │ └── ic_icon.png ├── Components │ ├── Basmallah │ │ ├── Basmallah.component.js │ │ └── Basmallah.styles.js │ ├── CardAyatList │ │ ├── CardAyatList.component.js │ │ └── CardAyatList.style.js │ ├── CardSurahList │ │ ├── CardSurahList.component.js │ │ └── CardSurahList.style.js │ ├── HeaderSurahDetail │ │ ├── HeaderSurahDetail.component.js │ │ └── HeaderSurahDetail.style.js │ ├── HeaderSurahList │ │ ├── HeaderSurahList.component.js │ │ └── HeaderSurahList.style.js │ ├── Lists │ │ ├── ListsComponent.js │ │ └── ListsComponent.style.js │ ├── Loading │ │ ├── Loading.component.js │ │ └── Loading.styles.js │ ├── ModalDialog │ │ ├── ModalDialog.style.js │ │ └── ModalDialogComponent.js │ ├── ModalOptions │ │ ├── ModalOptions.style.js │ │ └── ModalOptionsComponent.js │ ├── Radio │ │ ├── Radio.style.js │ │ └── RadioComponent.js │ ├── Row │ │ ├── Row.Style.js │ │ └── RowComponent.js │ ├── Separator │ │ ├── Separator.component.js │ │ └── Separator.style.js │ └── Switch │ │ ├── Switch.style.js │ │ └── SwitchComponent.js ├── Containers │ ├── AboutPage │ │ ├── AboutPage.component.js │ │ └── AboutPage.style.js │ ├── QuranDetailPage │ │ ├── QuranDetail.component.js │ │ └── QuranDetail.container.js │ ├── QuranListPage │ │ ├── QuranList.component.js │ │ └── QuranList.container.js │ ├── SettingsPage │ │ ├── SettingsPage.component.js │ │ └── SettingsPage.style.js │ └── SplashScreenPage │ │ └── SplashScreen.component.js ├── Data │ └── Basmallah.json ├── I18next │ ├── I18n.js │ └── locales │ │ ├── en-EN.json │ │ └── id-ID.json ├── Navigation │ ├── AppNavigator.js │ └── Routes.js ├── Redux │ ├── Actions │ │ ├── Language │ │ │ └── Language.js │ │ ├── QuranDetail │ │ │ └── QuranDetail.js │ │ ├── QuranList │ │ │ └── QuranList.js │ │ └── Types.js │ ├── CreateStore.js │ └── Reducers │ │ ├── Language │ │ └── LanguageReducer.js │ │ ├── QuranDetail │ │ └── QuranDetailReducer.js │ │ ├── QuranList │ │ └── QuranListReducer.js │ │ └── index.js ├── Themes │ ├── Colors.js │ ├── Fonts.js │ └── Styles.js └── Utils │ ├── Constants.js │ ├── EndPoints.js │ ├── Helper.js │ ├── Navigations.js │ ├── Strings.js │ ├── Transition.js │ └── Translation.js ├── babel.config.js ├── index.js ├── ios ├── AlQuranMobile-tvOS │ └── Info.plist ├── AlQuranMobile-tvOSTests │ └── Info.plist ├── AlQuranMobile.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── AlQuranMobile-tvOS.xcscheme │ │ └── AlQuranMobile.xcscheme ├── AlQuranMobile.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── AlQuranMobile │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m ├── AlQuranMobileTests │ ├── AlQuranMobileTests.m │ └── Info.plist ├── Podfile └── Podfile.lock ├── metro.config.js ├── package.json ├── react-native.config.js ├── ss1.jpg ├── ss2.jpg ├── ss3.jpg ├── ss4.jpg ├── ss5.jpg └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/.buckconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | BASE_URL='https://quran.kemenag.go.id/index.php/api/' -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/App.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/.project -------------------------------------------------------------------------------- /android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/app/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/.classpath -------------------------------------------------------------------------------- /android/app/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/.project -------------------------------------------------------------------------------- /android/app/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/_BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/beta/res/values/string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/src/beta/res/values/string.xml -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/dev/res/values/string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/src/dev/res/values/string.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/LPMQ.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/src/main/assets/fonts/LPMQ.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/src/main/assets/fonts/Roboto-Black.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/src/main/assets/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/src/main/assets/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/src/main/assets/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/src/main/assets/fonts/Roboto-Thin.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/ihsan/alquran/mobile/app/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/src/main/java/com/ihsan/alquran/mobile/app/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/ihsan/alquran/mobile/app/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/src/main/java/com/ihsan/alquran/mobile/app/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/launch_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/src/main/res/drawable-hdpi/launch_screen.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-ldpi/launch_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/src/main/res/drawable-ldpi/launch_screen.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/launch_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/src/main/res/drawable-mdpi/launch_screen.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/launch_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/src/main/res/drawable-xhdpi/launch_screen.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/launch_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/src/main/res/drawable-xxhdpi/launch_screen.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/launch_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/src/main/res/drawable-xxxhdpi/launch_screen.png -------------------------------------------------------------------------------- /android/app/src/main/res/layout/launch_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/src/main/res/layout/launch_screen.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-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/ihsaninh/Al-Quran-mobile-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/ihsaninh/Al-Quran-mobile-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/ihsaninh/Al-Quran-mobile-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/ihsaninh/Al-Quran-mobile-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/ihsaninh/Al-Quran-mobile-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/ihsaninh/Al-Quran-mobile-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/ihsaninh/Al-Quran-mobile-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/ihsaninh/Al-Quran-mobile-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/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/release/res/values/string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/app/src/release/res/values/string.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app.json -------------------------------------------------------------------------------- /app/Assets/Fonts/LPMQ.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Assets/Fonts/LPMQ.ttf -------------------------------------------------------------------------------- /app/Assets/Fonts/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Assets/Fonts/Roboto-Black.ttf -------------------------------------------------------------------------------- /app/Assets/Fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Assets/Fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /app/Assets/Fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Assets/Fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /app/Assets/Fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Assets/Fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /app/Assets/Fonts/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Assets/Fonts/Roboto-Thin.ttf -------------------------------------------------------------------------------- /app/Assets/Fonts/arabic-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Assets/Fonts/arabic-font.ttf -------------------------------------------------------------------------------- /app/Assets/Images/ic_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Assets/Images/ic_icon.png -------------------------------------------------------------------------------- /app/Components/Basmallah/Basmallah.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Components/Basmallah/Basmallah.component.js -------------------------------------------------------------------------------- /app/Components/Basmallah/Basmallah.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Components/Basmallah/Basmallah.styles.js -------------------------------------------------------------------------------- /app/Components/CardAyatList/CardAyatList.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Components/CardAyatList/CardAyatList.component.js -------------------------------------------------------------------------------- /app/Components/CardAyatList/CardAyatList.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Components/CardAyatList/CardAyatList.style.js -------------------------------------------------------------------------------- /app/Components/CardSurahList/CardSurahList.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Components/CardSurahList/CardSurahList.component.js -------------------------------------------------------------------------------- /app/Components/CardSurahList/CardSurahList.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Components/CardSurahList/CardSurahList.style.js -------------------------------------------------------------------------------- /app/Components/HeaderSurahDetail/HeaderSurahDetail.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Components/HeaderSurahDetail/HeaderSurahDetail.component.js -------------------------------------------------------------------------------- /app/Components/HeaderSurahDetail/HeaderSurahDetail.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Components/HeaderSurahDetail/HeaderSurahDetail.style.js -------------------------------------------------------------------------------- /app/Components/HeaderSurahList/HeaderSurahList.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Components/HeaderSurahList/HeaderSurahList.component.js -------------------------------------------------------------------------------- /app/Components/HeaderSurahList/HeaderSurahList.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Components/HeaderSurahList/HeaderSurahList.style.js -------------------------------------------------------------------------------- /app/Components/Lists/ListsComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Components/Lists/ListsComponent.js -------------------------------------------------------------------------------- /app/Components/Lists/ListsComponent.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Components/Lists/ListsComponent.style.js -------------------------------------------------------------------------------- /app/Components/Loading/Loading.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Components/Loading/Loading.component.js -------------------------------------------------------------------------------- /app/Components/Loading/Loading.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Components/Loading/Loading.styles.js -------------------------------------------------------------------------------- /app/Components/ModalDialog/ModalDialog.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Components/ModalDialog/ModalDialog.style.js -------------------------------------------------------------------------------- /app/Components/ModalDialog/ModalDialogComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Components/ModalDialog/ModalDialogComponent.js -------------------------------------------------------------------------------- /app/Components/ModalOptions/ModalOptions.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Components/ModalOptions/ModalOptions.style.js -------------------------------------------------------------------------------- /app/Components/ModalOptions/ModalOptionsComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Components/ModalOptions/ModalOptionsComponent.js -------------------------------------------------------------------------------- /app/Components/Radio/Radio.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Components/Radio/Radio.style.js -------------------------------------------------------------------------------- /app/Components/Radio/RadioComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Components/Radio/RadioComponent.js -------------------------------------------------------------------------------- /app/Components/Row/Row.Style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Components/Row/Row.Style.js -------------------------------------------------------------------------------- /app/Components/Row/RowComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Components/Row/RowComponent.js -------------------------------------------------------------------------------- /app/Components/Separator/Separator.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Components/Separator/Separator.component.js -------------------------------------------------------------------------------- /app/Components/Separator/Separator.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Components/Separator/Separator.style.js -------------------------------------------------------------------------------- /app/Components/Switch/Switch.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Components/Switch/Switch.style.js -------------------------------------------------------------------------------- /app/Components/Switch/SwitchComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Components/Switch/SwitchComponent.js -------------------------------------------------------------------------------- /app/Containers/AboutPage/AboutPage.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Containers/AboutPage/AboutPage.component.js -------------------------------------------------------------------------------- /app/Containers/AboutPage/AboutPage.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Containers/AboutPage/AboutPage.style.js -------------------------------------------------------------------------------- /app/Containers/QuranDetailPage/QuranDetail.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Containers/QuranDetailPage/QuranDetail.component.js -------------------------------------------------------------------------------- /app/Containers/QuranDetailPage/QuranDetail.container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Containers/QuranDetailPage/QuranDetail.container.js -------------------------------------------------------------------------------- /app/Containers/QuranListPage/QuranList.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Containers/QuranListPage/QuranList.component.js -------------------------------------------------------------------------------- /app/Containers/QuranListPage/QuranList.container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Containers/QuranListPage/QuranList.container.js -------------------------------------------------------------------------------- /app/Containers/SettingsPage/SettingsPage.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Containers/SettingsPage/SettingsPage.component.js -------------------------------------------------------------------------------- /app/Containers/SettingsPage/SettingsPage.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Containers/SettingsPage/SettingsPage.style.js -------------------------------------------------------------------------------- /app/Containers/SplashScreenPage/SplashScreen.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Containers/SplashScreenPage/SplashScreen.component.js -------------------------------------------------------------------------------- /app/Data/Basmallah.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Data/Basmallah.json -------------------------------------------------------------------------------- /app/I18next/I18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/I18next/I18n.js -------------------------------------------------------------------------------- /app/I18next/locales/en-EN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/I18next/locales/en-EN.json -------------------------------------------------------------------------------- /app/I18next/locales/id-ID.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/I18next/locales/id-ID.json -------------------------------------------------------------------------------- /app/Navigation/AppNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Navigation/AppNavigator.js -------------------------------------------------------------------------------- /app/Navigation/Routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Navigation/Routes.js -------------------------------------------------------------------------------- /app/Redux/Actions/Language/Language.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Redux/Actions/Language/Language.js -------------------------------------------------------------------------------- /app/Redux/Actions/QuranDetail/QuranDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Redux/Actions/QuranDetail/QuranDetail.js -------------------------------------------------------------------------------- /app/Redux/Actions/QuranList/QuranList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Redux/Actions/QuranList/QuranList.js -------------------------------------------------------------------------------- /app/Redux/Actions/Types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Redux/Actions/Types.js -------------------------------------------------------------------------------- /app/Redux/CreateStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Redux/CreateStore.js -------------------------------------------------------------------------------- /app/Redux/Reducers/Language/LanguageReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Redux/Reducers/Language/LanguageReducer.js -------------------------------------------------------------------------------- /app/Redux/Reducers/QuranDetail/QuranDetailReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Redux/Reducers/QuranDetail/QuranDetailReducer.js -------------------------------------------------------------------------------- /app/Redux/Reducers/QuranList/QuranListReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Redux/Reducers/QuranList/QuranListReducer.js -------------------------------------------------------------------------------- /app/Redux/Reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Redux/Reducers/index.js -------------------------------------------------------------------------------- /app/Themes/Colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Themes/Colors.js -------------------------------------------------------------------------------- /app/Themes/Fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Themes/Fonts.js -------------------------------------------------------------------------------- /app/Themes/Styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Themes/Styles.js -------------------------------------------------------------------------------- /app/Utils/Constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Utils/Constants.js -------------------------------------------------------------------------------- /app/Utils/EndPoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Utils/EndPoints.js -------------------------------------------------------------------------------- /app/Utils/Helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Utils/Helper.js -------------------------------------------------------------------------------- /app/Utils/Navigations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Utils/Navigations.js -------------------------------------------------------------------------------- /app/Utils/Strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Utils/Strings.js -------------------------------------------------------------------------------- /app/Utils/Transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Utils/Transition.js -------------------------------------------------------------------------------- /app/Utils/Translation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/app/Utils/Translation.js -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/index.js -------------------------------------------------------------------------------- /ios/AlQuranMobile-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/ios/AlQuranMobile-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/AlQuranMobile-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/ios/AlQuranMobile-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/AlQuranMobile.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/ios/AlQuranMobile.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/AlQuranMobile.xcodeproj/xcshareddata/xcschemes/AlQuranMobile-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/ios/AlQuranMobile.xcodeproj/xcshareddata/xcschemes/AlQuranMobile-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/AlQuranMobile.xcodeproj/xcshareddata/xcschemes/AlQuranMobile.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/ios/AlQuranMobile.xcodeproj/xcshareddata/xcschemes/AlQuranMobile.xcscheme -------------------------------------------------------------------------------- /ios/AlQuranMobile.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/ios/AlQuranMobile.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/AlQuranMobile.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/ios/AlQuranMobile.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/AlQuranMobile/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/ios/AlQuranMobile/AppDelegate.h -------------------------------------------------------------------------------- /ios/AlQuranMobile/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/ios/AlQuranMobile/AppDelegate.m -------------------------------------------------------------------------------- /ios/AlQuranMobile/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/ios/AlQuranMobile/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/AlQuranMobile/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/ios/AlQuranMobile/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/AlQuranMobile/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/ios/AlQuranMobile/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/AlQuranMobile/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/ios/AlQuranMobile/Info.plist -------------------------------------------------------------------------------- /ios/AlQuranMobile/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/ios/AlQuranMobile/main.m -------------------------------------------------------------------------------- /ios/AlQuranMobileTests/AlQuranMobileTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/ios/AlQuranMobileTests/AlQuranMobileTests.m -------------------------------------------------------------------------------- /ios/AlQuranMobileTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/ios/AlQuranMobileTests/Info.plist -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/package.json -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/react-native.config.js -------------------------------------------------------------------------------- /ss1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/ss1.jpg -------------------------------------------------------------------------------- /ss2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/ss2.jpg -------------------------------------------------------------------------------- /ss3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/ss3.jpg -------------------------------------------------------------------------------- /ss4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/ss4.jpg -------------------------------------------------------------------------------- /ss5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/ss5.jpg -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihsaninh/Al-Quran-mobile-react-native/HEAD/yarn.lock --------------------------------------------------------------------------------