├── .buckconfig ├── .editorconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.js ├── __tests__ └── App-test.js ├── android ├── app │ ├── _BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── onlinelearningapp │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── Roboto-Black.ttf │ │ │ ├── Roboto-BlackItalic.ttf │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-BoldItalic.ttf │ │ │ ├── Roboto-Italic.ttf │ │ │ ├── Roboto-Light.ttf │ │ │ ├── Roboto-LightItalic.ttf │ │ │ ├── Roboto-Medium.ttf │ │ │ ├── Roboto-MediumItalic.ttf │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── Roboto-Thin.ttf │ │ │ ├── Roboto-ThinItalic.ttf │ │ │ ├── RobotoCondensed-Bold.ttf │ │ │ ├── RobotoCondensed-BoldItalic.ttf │ │ │ ├── RobotoCondensed-Italic.ttf │ │ │ ├── RobotoCondensed-Light.ttf │ │ │ ├── RobotoCondensed-LightItalic.ttf │ │ │ └── RobotoCondensed-Regular.ttf │ │ ├── java │ │ └── com │ │ │ └── onlinelearningapp │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── 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 │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── assets ├── fonts │ ├── Roboto-Black.ttf │ ├── Roboto-BlackItalic.ttf │ ├── Roboto-Bold.ttf │ ├── Roboto-BoldItalic.ttf │ ├── Roboto-Italic.ttf │ ├── Roboto-Light.ttf │ ├── Roboto-LightItalic.ttf │ ├── Roboto-Medium.ttf │ ├── Roboto-MediumItalic.ttf │ ├── Roboto-Regular.ttf │ ├── Roboto-Thin.ttf │ ├── Roboto-ThinItalic.ttf │ ├── RobotoCondensed-Bold.ttf │ ├── RobotoCondensed-BoldItalic.ttf │ ├── RobotoCondensed-Italic.ttf │ ├── RobotoCondensed-Light.ttf │ ├── RobotoCondensed-LightItalic.ttf │ └── RobotoCondensed-Regular.ttf ├── icons │ ├── all.png │ ├── animation.png │ ├── back.png │ ├── call.png │ ├── camera.png │ ├── checkbox_off.png │ ├── checkbox_off_dark.png │ ├── checkbox_on.png │ ├── checkbox_on_dark.png │ ├── checked.png │ ├── coding.png │ ├── comment.png │ ├── completed.png │ ├── download.png │ ├── drawing.png │ ├── education.png │ ├── email.png │ ├── eye.png │ ├── eye_close.png │ ├── facebook.png │ ├── favourite.png │ ├── favourite_outline.png │ ├── filter.png │ ├── google.png │ ├── heart.png │ ├── heart_off.png │ ├── home.png │ ├── illustration.png │ ├── lock.png │ ├── media.png │ ├── menu.png │ ├── mobile.png │ ├── model_3d.png │ ├── networking.png │ ├── new.png │ ├── notification.png │ ├── original.png │ ├── password.png │ ├── play.png │ ├── play_1.png │ ├── profile.png │ ├── reminder.png │ ├── reply.png │ ├── right_arrow.png │ ├── search.png │ ├── send.png │ ├── staff_pick.png │ ├── star.png │ ├── star_1.png │ ├── sun.png │ ├── time.png │ └── web_design.png └── images │ ├── bg.png │ ├── bg_1.png │ ├── bg_2.png │ ├── bg_3.png │ ├── bg_4.png │ ├── bg_5.png │ ├── bg_6.png │ ├── bg_dark.png │ ├── doc.png │ ├── featured_bg_image.png │ ├── mobile_image.png │ ├── pdf.png │ ├── profile.png │ ├── sketch.png │ ├── start_learning.png │ ├── student_1.png │ ├── student_2.png │ ├── student_3.png │ ├── thumbnail_1.png │ ├── thumbnail_2.png │ ├── thumbnail_3.png │ ├── thumbnail_4.png │ └── work.png ├── babel.config.js ├── constants ├── constants.js ├── dummyData.js ├── icons.js ├── images.js ├── index.js └── theme.js ├── index.js ├── ios ├── OnlineLearningApp.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── OnlineLearningApp.xcscheme ├── OnlineLearningApp.xcworkspace │ └── contents.xcworkspacedata ├── OnlineLearningApp │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── main.m ├── OnlineLearningAppTests │ ├── Info.plist │ └── OnlineLearningAppTests.m ├── Podfile └── Podfile.lock ├── metro.config.js ├── package-lock.json ├── package.json ├── react-native.config.js ├── screens ├── Dashboard │ ├── Home.js │ ├── MainLayout.js │ ├── Profile.js │ └── Search.js └── index.js └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # Windows files 2 | [*.bat] 3 | end_of_line = crlf 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | ; We fork some components by platform 3 | .*/*[.]android.js 4 | 5 | ; Ignore "BUCK" generated dirs 6 | /\.buckd/ 7 | 8 | ; Ignore polyfills 9 | node_modules/react-native/Libraries/polyfills/.* 10 | 11 | ; Flow doesn't support platforms 12 | .*/Libraries/Utilities/LoadingView.js 13 | 14 | [untyped] 15 | .*/node_modules/@react-native-community/cli/.*/.* 16 | 17 | [include] 18 | 19 | [libs] 20 | node_modules/react-native/interface.js 21 | node_modules/react-native/flow/ 22 | 23 | [options] 24 | emoji=true 25 | 26 | exact_by_default=true 27 | 28 | format.bracket_spacing=false 29 | 30 | module.file_ext=.js 31 | module.file_ext=.json 32 | module.file_ext=.ios.js 33 | 34 | munge_underscores=true 35 | 36 | module.name_mapper='^react-native/\(.*\)$' -> '/node_modules/react-native/\1' 37 | module.name_mapper='^@?[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> '/node_modules/react-native/Libraries/Image/RelativeImageStub' 38 | 39 | suppress_type=$FlowIssue 40 | suppress_type=$FlowFixMe 41 | suppress_type=$FlowFixMeProps 42 | suppress_type=$FlowFixMeState 43 | 44 | [lints] 45 | sketchy-null-number=warn 46 | sketchy-null-mixed=warn 47 | sketchy-number=warn 48 | untyped-type-import=warn 49 | nonstrict-import=warn 50 | deprecated-type=warn 51 | unsafe-getters-setters=warn 52 | unnecessary-invariant=warn 53 | signature-verification-failure=warn 54 | 55 | [strict] 56 | deprecated-type 57 | nonstrict-import 58 | sketchy-null 59 | unclear-type 60 | unsafe-getters-setters 61 | untyped-import 62 | untyped-type-import 63 | 64 | [version] 65 | ^0.158.0 66 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Windows files should use crlf line endings 2 | # https://help.github.com/articles/dealing-with-line-endings/ 3 | *.bat text eol=crlf 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | # Xcode 6 | # 7 | build/ 8 | *.pbxuser 9 | !default.pbxuser 10 | *.mode1v3 11 | !default.mode1v3 12 | *.mode2v3 13 | !default.mode2v3 14 | *.perspectivev3 15 | !default.perspectivev3 16 | xcuserdata 17 | *.xccheckout 18 | *.moved-aside 19 | DerivedData 20 | *.hmap 21 | *.ipa 22 | *.xcuserstate 23 | 24 | # Android/IntelliJ 25 | # 26 | build/ 27 | .idea 28 | .gradle 29 | local.properties 30 | *.iml 31 | *.hprof 32 | 33 | # node.js 34 | # 35 | node_modules/ 36 | npm-debug.log 37 | yarn-error.log 38 | 39 | # BUCK 40 | buck-out/ 41 | \.buckd/ 42 | *.keystore 43 | !debug.keystore 44 | 45 | # fastlane 46 | # 47 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 48 | # screenshots whenever they are needed. 49 | # For more information about the recommended setup visit: 50 | # https://docs.fastlane.tools/best-practices/source-control/ 51 | 52 | */fastlane/report.xml 53 | */fastlane/Preview.html 54 | */fastlane/screenshots 55 | 56 | # Bundle artifact 57 | *.jsbundle 58 | 59 | # CocoaPods 60 | /ios/Pods/ 61 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | bracketSpacing: false, 3 | jsxBracketSameLine: true, 4 | singleQuote: true, 5 | trailingComma: 'all', 6 | arrowParens: 'avoid', 7 | }; 8 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { NavigationContainer } from '@react-navigation/native'; 3 | import { createNativeStackNavigator } from '@react-navigation/native-stack'; 4 | 5 | import { 6 | MainLayout 7 | } from "./screens"; 8 | 9 | const Stack = createNativeStackNavigator(); 10 | 11 | const App = () => { 12 | return ( 13 | 14 | 20 | 24 | 25 | 26 | ) 27 | } 28 | 29 | export default App -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | */ 4 | 5 | import 'react-native'; 6 | import React from 'react'; 7 | import App from '../App'; 8 | 9 | // Note: test renderer must be required after react-native. 10 | import renderer from 'react-test-renderer'; 11 | 12 | it('renders correctly', () => { 13 | renderer.create(); 14 | }); 15 | -------------------------------------------------------------------------------- /android/app/_BUCK: -------------------------------------------------------------------------------- 1 | # To learn about Buck see [Docs](https://buckbuild.com/). 2 | # To run your application with Buck: 3 | # - install Buck 4 | # - `npm start` - to start the packager 5 | # - `cd android` 6 | # - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"` 7 | # - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck 8 | # - `buck install -r android/app` - compile, install and run application 9 | # 10 | 11 | load(":build_defs.bzl", "create_aar_targets", "create_jar_targets") 12 | 13 | lib_deps = [] 14 | 15 | create_aar_targets(glob(["libs/*.aar"])) 16 | 17 | create_jar_targets(glob(["libs/*.jar"])) 18 | 19 | android_library( 20 | name = "all-libs", 21 | exported_deps = lib_deps, 22 | ) 23 | 24 | android_library( 25 | name = "app-code", 26 | srcs = glob([ 27 | "src/main/java/**/*.java", 28 | ]), 29 | deps = [ 30 | ":all-libs", 31 | ":build_config", 32 | ":res", 33 | ], 34 | ) 35 | 36 | android_build_config( 37 | name = "build_config", 38 | package = "com.onlinelearningapp", 39 | ) 40 | 41 | android_resource( 42 | name = "res", 43 | package = "com.onlinelearningapp", 44 | res = "src/main/res", 45 | ) 46 | 47 | android_binary( 48 | name = "app", 49 | keystore = "//android/keystores:debug", 50 | manifest = "src/main/AndroidManifest.xml", 51 | package_type = "debug", 52 | deps = [ 53 | ":app-code", 54 | ], 55 | ) 56 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: "com.android.application" 2 | 3 | import com.android.build.OutputFile 4 | 5 | /** 6 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets 7 | * and bundleReleaseJsAndAssets). 8 | * These basically call `react-native bundle` with the correct arguments during the Android build 9 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the 10 | * bundle directly from the development server. Below you can see all the possible configurations 11 | * and their defaults. If you decide to add a configuration block, make sure to add it before the 12 | * `apply from: "../../node_modules/react-native/react.gradle"` line. 13 | * 14 | * project.ext.react = [ 15 | * // the name of the generated asset file containing your JS bundle 16 | * bundleAssetName: "index.android.bundle", 17 | * 18 | * // the entry file for bundle generation. If none specified and 19 | * // "index.android.js" exists, it will be used. Otherwise "index.js" is 20 | * // default. Can be overridden with ENTRY_FILE environment variable. 21 | * entryFile: "index.android.js", 22 | * 23 | * // https://reactnative.dev/docs/performance#enable-the-ram-format 24 | * bundleCommand: "ram-bundle", 25 | * 26 | * // whether to bundle JS and assets in debug mode 27 | * bundleInDebug: false, 28 | * 29 | * // whether to bundle JS and assets in release mode 30 | * bundleInRelease: true, 31 | * 32 | * // whether to bundle JS and assets in another build variant (if configured). 33 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants 34 | * // The configuration property can be in the following formats 35 | * // 'bundleIn${productFlavor}${buildType}' 36 | * // 'bundleIn${buildType}' 37 | * // bundleInFreeDebug: true, 38 | * // bundleInPaidRelease: true, 39 | * // bundleInBeta: true, 40 | * 41 | * // whether to disable dev mode in custom build variants (by default only disabled in release) 42 | * // for example: to disable dev mode in the staging build type (if configured) 43 | * devDisabledInStaging: true, 44 | * // The configuration property can be in the following formats 45 | * // 'devDisabledIn${productFlavor}${buildType}' 46 | * // 'devDisabledIn${buildType}' 47 | * 48 | * // the root of your project, i.e. where "package.json" lives 49 | * root: "../../", 50 | * 51 | * // where to put the JS bundle asset in debug mode 52 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", 53 | * 54 | * // where to put the JS bundle asset in release mode 55 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release", 56 | * 57 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 58 | * // require('./image.png')), in debug mode 59 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", 60 | * 61 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 62 | * // require('./image.png')), in release mode 63 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", 64 | * 65 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means 66 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to 67 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle 68 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ 69 | * // for example, you might want to remove it from here. 70 | * inputExcludes: ["android/**", "ios/**"], 71 | * 72 | * // override which node gets called and with what additional arguments 73 | * nodeExecutableAndArgs: ["node"], 74 | * 75 | * // supply additional arguments to the packager 76 | * extraPackagerArgs: [] 77 | * ] 78 | */ 79 | 80 | project.ext.react = [ 81 | enableHermes: true, // clean and rebuild if changing 82 | ] 83 | 84 | apply from: "../../node_modules/react-native/react.gradle" 85 | 86 | /** 87 | * Set this to true to create two separate APKs instead of one: 88 | * - An APK that only works on ARM devices 89 | * - An APK that only works on x86 devices 90 | * The advantage is the size of the APK is reduced by about 4MB. 91 | * Upload all the APKs to the Play Store and people will download 92 | * the correct one based on the CPU architecture of their device. 93 | */ 94 | def enableSeparateBuildPerCPUArchitecture = false 95 | 96 | /** 97 | * Run Proguard to shrink the Java bytecode in release builds. 98 | */ 99 | def enableProguardInReleaseBuilds = false 100 | 101 | /** 102 | * The preferred build flavor of JavaScriptCore. 103 | * 104 | * For example, to use the international variant, you can use: 105 | * `def jscFlavor = 'org.webkit:android-jsc-intl:+'` 106 | * 107 | * The international variant includes ICU i18n library and necessary data 108 | * allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that 109 | * give correct results when using with locales other than en-US. Note that 110 | * this variant is about 6MiB larger per architecture than default. 111 | */ 112 | def jscFlavor = 'org.webkit:android-jsc:+' 113 | 114 | /** 115 | * Whether to enable the Hermes VM. 116 | * 117 | * This should be set on project.ext.react and mirrored here. If it is not set 118 | * on project.ext.react, JavaScript will not be compiled to Hermes Bytecode 119 | * and the benefits of using Hermes will therefore be sharply reduced. 120 | */ 121 | def enableHermes = project.ext.react.get("enableHermes", false); 122 | 123 | /** 124 | * Architectures to build native code for in debug. 125 | */ 126 | def nativeArchitectures = project.getProperties().get("reactNativeDebugArchitectures") 127 | 128 | android { 129 | ndkVersion rootProject.ext.ndkVersion 130 | 131 | compileSdkVersion rootProject.ext.compileSdkVersion 132 | 133 | defaultConfig { 134 | applicationId "com.onlinelearningapp" 135 | minSdkVersion rootProject.ext.minSdkVersion 136 | targetSdkVersion rootProject.ext.targetSdkVersion 137 | versionCode 1 138 | versionName "1.0" 139 | } 140 | splits { 141 | abi { 142 | reset() 143 | enable enableSeparateBuildPerCPUArchitecture 144 | universalApk false // If true, also generate a universal APK 145 | include "armeabi-v7a", "x86", "arm64-v8a", "x86_64" 146 | } 147 | } 148 | signingConfigs { 149 | debug { 150 | storeFile file('debug.keystore') 151 | storePassword 'android' 152 | keyAlias 'androiddebugkey' 153 | keyPassword 'android' 154 | } 155 | } 156 | buildTypes { 157 | debug { 158 | signingConfig signingConfigs.debug 159 | if (nativeArchitectures) { 160 | ndk { 161 | abiFilters nativeArchitectures.split(',') 162 | } 163 | } 164 | } 165 | release { 166 | // Caution! In production, you need to generate your own keystore file. 167 | // see https://reactnative.dev/docs/signed-apk-android. 168 | signingConfig signingConfigs.debug 169 | minifyEnabled enableProguardInReleaseBuilds 170 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 171 | } 172 | } 173 | 174 | // applicationVariants are e.g. debug, release 175 | applicationVariants.all { variant -> 176 | variant.outputs.each { output -> 177 | // For each separate APK per architecture, set a unique version code as described here: 178 | // https://developer.android.com/studio/build/configure-apk-splits.html 179 | // Example: versionCode 1 will generate 1001 for armeabi-v7a, 1002 for x86, etc. 180 | def versionCodes = ["armeabi-v7a": 1, "x86": 2, "arm64-v8a": 3, "x86_64": 4] 181 | def abi = output.getFilter(OutputFile.ABI) 182 | if (abi != null) { // null for the universal-debug, universal-release variants 183 | output.versionCodeOverride = 184 | defaultConfig.versionCode * 1000 + versionCodes.get(abi) 185 | } 186 | 187 | } 188 | } 189 | } 190 | 191 | dependencies { 192 | implementation fileTree(dir: "libs", include: ["*.jar"]) 193 | //noinspection GradleDynamicVersion 194 | implementation "com.facebook.react:react-native:+" // From node_modules 195 | 196 | implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0" 197 | 198 | debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") { 199 | exclude group:'com.facebook.fbjni' 200 | } 201 | 202 | debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") { 203 | exclude group:'com.facebook.flipper' 204 | exclude group:'com.squareup.okhttp3', module:'okhttp' 205 | } 206 | 207 | debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}") { 208 | exclude group:'com.facebook.flipper' 209 | } 210 | 211 | if (enableHermes) { 212 | def hermesPath = "../../node_modules/hermes-engine/android/"; 213 | debugImplementation files(hermesPath + "hermes-debug.aar") 214 | releaseImplementation files(hermesPath + "hermes-release.aar") 215 | } else { 216 | implementation jscFlavor 217 | } 218 | } 219 | 220 | // Run this once to be able to run the application with BUCK 221 | // puts all compile dependencies into folder libs for BUCK to use 222 | task copyDownloadableDepsToLibs(type: Copy) { 223 | from configurations.implementation 224 | into 'libs' 225 | } 226 | 227 | apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project) 228 | -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- 1 | """Helper definitions to glob .aar and .jar targets""" 2 | 3 | def create_aar_targets(aarfiles): 4 | for aarfile in aarfiles: 5 | name = "aars__" + aarfile[aarfile.rindex("/") + 1:aarfile.rindex(".aar")] 6 | lib_deps.append(":" + name) 7 | android_prebuilt_aar( 8 | name = name, 9 | aar = aarfile, 10 | ) 11 | 12 | def create_jar_targets(jarfiles): 13 | for jarfile in jarfiles: 14 | name = "jars__" + jarfile[jarfile.rindex("/") + 1:jarfile.rindex(".jar")] 15 | lib_deps.append(":" + name) 16 | prebuilt_jar( 17 | name = name, 18 | binary_jar = jarfile, 19 | ) 20 | -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /android/app/src/debug/java/com/onlinelearningapp/ReactNativeFlipper.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | *

This source code is licensed under the MIT license found in the LICENSE file in the root 5 | * directory of this source tree. 6 | */ 7 | package com.onlinelearningapp; 8 | 9 | import android.content.Context; 10 | import com.facebook.flipper.android.AndroidFlipperClient; 11 | import com.facebook.flipper.android.utils.FlipperUtils; 12 | import com.facebook.flipper.core.FlipperClient; 13 | import com.facebook.flipper.plugins.crashreporter.CrashReporterPlugin; 14 | import com.facebook.flipper.plugins.databases.DatabasesFlipperPlugin; 15 | import com.facebook.flipper.plugins.fresco.FrescoFlipperPlugin; 16 | import com.facebook.flipper.plugins.inspector.DescriptorMapping; 17 | import com.facebook.flipper.plugins.inspector.InspectorFlipperPlugin; 18 | import com.facebook.flipper.plugins.network.FlipperOkhttpInterceptor; 19 | import com.facebook.flipper.plugins.network.NetworkFlipperPlugin; 20 | import com.facebook.flipper.plugins.react.ReactFlipperPlugin; 21 | import com.facebook.flipper.plugins.sharedpreferences.SharedPreferencesFlipperPlugin; 22 | import com.facebook.react.ReactInstanceManager; 23 | import com.facebook.react.bridge.ReactContext; 24 | import com.facebook.react.modules.network.NetworkingModule; 25 | import okhttp3.OkHttpClient; 26 | 27 | public class ReactNativeFlipper { 28 | public static void initializeFlipper(Context context, ReactInstanceManager reactInstanceManager) { 29 | if (FlipperUtils.shouldEnableFlipper(context)) { 30 | final FlipperClient client = AndroidFlipperClient.getInstance(context); 31 | 32 | client.addPlugin(new InspectorFlipperPlugin(context, DescriptorMapping.withDefaults())); 33 | client.addPlugin(new ReactFlipperPlugin()); 34 | client.addPlugin(new DatabasesFlipperPlugin(context)); 35 | client.addPlugin(new SharedPreferencesFlipperPlugin(context)); 36 | client.addPlugin(CrashReporterPlugin.getInstance()); 37 | 38 | NetworkFlipperPlugin networkFlipperPlugin = new NetworkFlipperPlugin(); 39 | NetworkingModule.setCustomClientBuilder( 40 | new NetworkingModule.CustomClientBuilder() { 41 | @Override 42 | public void apply(OkHttpClient.Builder builder) { 43 | builder.addNetworkInterceptor(new FlipperOkhttpInterceptor(networkFlipperPlugin)); 44 | } 45 | }); 46 | client.addPlugin(networkFlipperPlugin); 47 | client.start(); 48 | 49 | // Fresco Plugin needs to ensure that ImagePipelineFactory is initialized 50 | // Hence we run if after all native modules have been initialized 51 | ReactContext reactContext = reactInstanceManager.getCurrentReactContext(); 52 | if (reactContext == null) { 53 | reactInstanceManager.addReactInstanceEventListener( 54 | new ReactInstanceManager.ReactInstanceEventListener() { 55 | @Override 56 | public void onReactContextInitialized(ReactContext reactContext) { 57 | reactInstanceManager.removeReactInstanceEventListener(this); 58 | reactContext.runOnNativeModulesQueueThread( 59 | new Runnable() { 60 | @Override 61 | public void run() { 62 | client.addPlugin(new FrescoFlipperPlugin()); 63 | } 64 | }); 65 | } 66 | }); 67 | } else { 68 | client.addPlugin(new FrescoFlipperPlugin()); 69 | } 70 | } 71 | } 72 | } 73 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 13 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/android/app/src/main/assets/fonts/Roboto-Black.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/android/app/src/main/assets/fonts/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/android/app/src/main/assets/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/android/app/src/main/assets/fonts/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/android/app/src/main/assets/fonts/Roboto-Italic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/android/app/src/main/assets/fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/android/app/src/main/assets/fonts/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/android/app/src/main/assets/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/android/app/src/main/assets/fonts/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/android/app/src/main/assets/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/android/app/src/main/assets/fonts/Roboto-Thin.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/android/app/src/main/assets/fonts/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/RobotoCondensed-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/android/app/src/main/assets/fonts/RobotoCondensed-Bold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/RobotoCondensed-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/android/app/src/main/assets/fonts/RobotoCondensed-BoldItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/RobotoCondensed-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/android/app/src/main/assets/fonts/RobotoCondensed-Italic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/RobotoCondensed-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/android/app/src/main/assets/fonts/RobotoCondensed-Light.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/RobotoCondensed-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/android/app/src/main/assets/fonts/RobotoCondensed-LightItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/RobotoCondensed-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/android/app/src/main/assets/fonts/RobotoCondensed-Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/onlinelearningapp/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.onlinelearningapp; 2 | 3 | import com.facebook.react.ReactActivity; 4 | 5 | public class MainActivity extends ReactActivity { 6 | 7 | /** 8 | * Returns the name of the main component registered from JavaScript. This is used to schedule 9 | * rendering of the component. 10 | */ 11 | @Override 12 | protected String getMainComponentName() { 13 | return "OnlineLearningApp"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/onlinelearningapp/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.onlinelearningapp; 2 | 3 | import android.app.Application; 4 | import android.content.Context; 5 | import com.facebook.react.PackageList; 6 | import com.facebook.react.ReactApplication; 7 | import com.facebook.react.ReactInstanceManager; 8 | import com.facebook.react.ReactNativeHost; 9 | import com.facebook.react.ReactPackage; 10 | import com.facebook.soloader.SoLoader; 11 | import java.lang.reflect.InvocationTargetException; 12 | import java.util.List; 13 | import com.facebook.react.bridge.JSIModulePackage; 14 | import com.swmansion.reanimated.ReanimatedJSIModulePackage; 15 | 16 | public class MainApplication extends Application implements ReactApplication { 17 | 18 | private final ReactNativeHost mReactNativeHost = 19 | new ReactNativeHost(this) { 20 | @Override 21 | public boolean getUseDeveloperSupport() { 22 | return BuildConfig.DEBUG; 23 | } 24 | 25 | @Override 26 | protected List getPackages() { 27 | @SuppressWarnings("UnnecessaryLocalVariable") 28 | List packages = new PackageList(this).getPackages(); 29 | // Packages that cannot be autolinked yet can be added manually here, for example: 30 | // packages.add(new MyReactNativePackage()); 31 | return packages; 32 | } 33 | 34 | @Override 35 | protected String getJSMainModuleName() { 36 | return "index"; 37 | } 38 | 39 | @Override 40 | protected JSIModulePackage getJSIModulePackage() { 41 | return new ReanimatedJSIModulePackage(); 42 | } 43 | }; 44 | 45 | @Override 46 | public ReactNativeHost getReactNativeHost() { 47 | return mReactNativeHost; 48 | } 49 | 50 | @Override 51 | public void onCreate() { 52 | super.onCreate(); 53 | SoLoader.init(this, /* native exopackage */ false); 54 | initializeFlipper(this, getReactNativeHost().getReactInstanceManager()); 55 | } 56 | 57 | /** 58 | * Loads Flipper in React Native templates. Call this in the onCreate method with something like 59 | * initializeFlipper(this, getReactNativeHost().getReactInstanceManager()); 60 | * 61 | * @param context 62 | * @param reactInstanceManager 63 | */ 64 | private static void initializeFlipper( 65 | Context context, ReactInstanceManager reactInstanceManager) { 66 | if (BuildConfig.DEBUG) { 67 | try { 68 | /* 69 | We use reflection here to pick up the class that initializes Flipper, 70 | since Flipper library is not available in release mode 71 | */ 72 | Class aClass = Class.forName("com.onlinelearningapp.ReactNativeFlipper"); 73 | aClass 74 | .getMethod("initializeFlipper", Context.class, ReactInstanceManager.class) 75 | .invoke(null, context, reactInstanceManager); 76 | } catch (ClassNotFoundException e) { 77 | e.printStackTrace(); 78 | } catch (NoSuchMethodException e) { 79 | e.printStackTrace(); 80 | } catch (IllegalAccessException e) { 81 | e.printStackTrace(); 82 | } catch (InvocationTargetException e) { 83 | e.printStackTrace(); 84 | } 85 | } 86 | } 87 | } 88 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/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/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/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/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/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/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/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/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/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/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/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/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/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/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/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/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/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/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | OnlineLearningApp 3 | 4 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | ext { 5 | buildToolsVersion = "30.0.2" 6 | minSdkVersion = 21 7 | compileSdkVersion = 30 8 | targetSdkVersion = 30 9 | ndkVersion = "21.4.7075529" 10 | } 11 | repositories { 12 | google() 13 | mavenCentral() 14 | } 15 | dependencies { 16 | classpath("com.android.tools.build:gradle:4.2.2") 17 | // NOTE: Do not place your application dependencies here; they belong 18 | // in the individual module build.gradle files 19 | } 20 | } 21 | 22 | allprojects { 23 | repositories { 24 | mavenCentral() 25 | mavenLocal() 26 | maven { 27 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 28 | url("$rootDir/../node_modules/react-native/android") 29 | } 30 | maven { 31 | // Android JSC is installed from npm 32 | url("$rootDir/../node_modules/jsc-android/dist") 33 | } 34 | 35 | google() 36 | maven { url 'https://www.jitpack.io' } 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true 19 | 20 | # AndroidX package structure to make it clearer which packages are bundled with the 21 | # Android operating system, and which are packaged with your app's APK 22 | # https://developer.android.com/topic/libraries/support-library/androidx-rn 23 | android.useAndroidX=true 24 | # Automatically convert third-party libraries to use AndroidX 25 | android.enableJetifier=true 26 | 27 | # Version of flipper SDK to use with React Native 28 | FLIPPER_VERSION=0.99.0 29 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.9-all.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | # 4 | # Copyright 2015 the original author or authors. 5 | # 6 | # Licensed under the Apache License, Version 2.0 (the "License"); 7 | # you may not use this file except in compliance with the License. 8 | # You may obtain a copy of the License at 9 | # 10 | # https://www.apache.org/licenses/LICENSE-2.0 11 | # 12 | # Unless required by applicable law or agreed to in writing, software 13 | # distributed under the License is distributed on an "AS IS" BASIS, 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | # See the License for the specific language governing permissions and 16 | # limitations under the License. 17 | # 18 | 19 | ############################################################################## 20 | ## 21 | ## Gradle start up script for UN*X 22 | ## 23 | ############################################################################## 24 | 25 | # Attempt to set APP_HOME 26 | # Resolve links: $0 may be a link 27 | PRG="$0" 28 | # Need this for relative symlinks. 29 | while [ -h "$PRG" ] ; do 30 | ls=`ls -ld "$PRG"` 31 | link=`expr "$ls" : '.*-> \(.*\)$'` 32 | if expr "$link" : '/.*' > /dev/null; then 33 | PRG="$link" 34 | else 35 | PRG=`dirname "$PRG"`"/$link" 36 | fi 37 | done 38 | SAVED="`pwd`" 39 | cd "`dirname \"$PRG\"`/" >/dev/null 40 | APP_HOME="`pwd -P`" 41 | cd "$SAVED" >/dev/null 42 | 43 | APP_NAME="Gradle" 44 | APP_BASE_NAME=`basename "$0"` 45 | 46 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 47 | DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' 48 | 49 | # Use the maximum available, or set MAX_FD != -1 to use that value. 50 | MAX_FD="maximum" 51 | 52 | warn () { 53 | echo "$*" 54 | } 55 | 56 | die () { 57 | echo 58 | echo "$*" 59 | echo 60 | exit 1 61 | } 62 | 63 | # OS specific support (must be 'true' or 'false'). 64 | cygwin=false 65 | msys=false 66 | darwin=false 67 | nonstop=false 68 | case "`uname`" in 69 | CYGWIN* ) 70 | cygwin=true 71 | ;; 72 | Darwin* ) 73 | darwin=true 74 | ;; 75 | MINGW* ) 76 | msys=true 77 | ;; 78 | NONSTOP* ) 79 | nonstop=true 80 | ;; 81 | esac 82 | 83 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 84 | 85 | 86 | # Determine the Java command to use to start the JVM. 87 | if [ -n "$JAVA_HOME" ] ; then 88 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 89 | # IBM's JDK on AIX uses strange locations for the executables 90 | JAVACMD="$JAVA_HOME/jre/sh/java" 91 | else 92 | JAVACMD="$JAVA_HOME/bin/java" 93 | fi 94 | if [ ! -x "$JAVACMD" ] ; then 95 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 96 | 97 | Please set the JAVA_HOME variable in your environment to match the 98 | location of your Java installation." 99 | fi 100 | else 101 | JAVACMD="java" 102 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 103 | 104 | Please set the JAVA_HOME variable in your environment to match the 105 | location of your Java installation." 106 | fi 107 | 108 | # Increase the maximum file descriptors if we can. 109 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then 110 | MAX_FD_LIMIT=`ulimit -H -n` 111 | if [ $? -eq 0 ] ; then 112 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 113 | MAX_FD="$MAX_FD_LIMIT" 114 | fi 115 | ulimit -n $MAX_FD 116 | if [ $? -ne 0 ] ; then 117 | warn "Could not set maximum file descriptor limit: $MAX_FD" 118 | fi 119 | else 120 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 121 | fi 122 | fi 123 | 124 | # For Darwin, add options to specify how the application appears in the dock 125 | if $darwin; then 126 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 127 | fi 128 | 129 | # For Cygwin or MSYS, switch paths to Windows format before running java 130 | if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then 131 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 132 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 133 | 134 | JAVACMD=`cygpath --unix "$JAVACMD"` 135 | 136 | # We build the pattern for arguments to be converted via cygpath 137 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 138 | SEP="" 139 | for dir in $ROOTDIRSRAW ; do 140 | ROOTDIRS="$ROOTDIRS$SEP$dir" 141 | SEP="|" 142 | done 143 | OURCYGPATTERN="(^($ROOTDIRS))" 144 | # Add a user-defined pattern to the cygpath arguments 145 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 146 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 147 | fi 148 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 149 | i=0 150 | for arg in "$@" ; do 151 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 152 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 153 | 154 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 155 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 156 | else 157 | eval `echo args$i`="\"$arg\"" 158 | fi 159 | i=`expr $i + 1` 160 | done 161 | case $i in 162 | 0) set -- ;; 163 | 1) set -- "$args0" ;; 164 | 2) set -- "$args0" "$args1" ;; 165 | 3) set -- "$args0" "$args1" "$args2" ;; 166 | 4) set -- "$args0" "$args1" "$args2" "$args3" ;; 167 | 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 168 | 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 169 | 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 170 | 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 171 | 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 172 | esac 173 | fi 174 | 175 | # Escape application args 176 | save () { 177 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done 178 | echo " " 179 | } 180 | APP_ARGS=`save "$@"` 181 | 182 | # Collect all arguments for the java command, following the shell quoting and substitution rules 183 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" 184 | 185 | exec "$JAVACMD" "$@" 186 | -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @rem 2 | @rem Copyright 2015 the original author or authors. 3 | @rem 4 | @rem Licensed under the Apache License, Version 2.0 (the "License"); 5 | @rem you may not use this file except in compliance with the License. 6 | @rem You may obtain a copy of the License at 7 | @rem 8 | @rem https://www.apache.org/licenses/LICENSE-2.0 9 | @rem 10 | @rem Unless required by applicable law or agreed to in writing, software 11 | @rem distributed under the License is distributed on an "AS IS" BASIS, 12 | @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | @rem See the License for the specific language governing permissions and 14 | @rem limitations under the License. 15 | @rem 16 | 17 | @if "%DEBUG%" == "" @echo off 18 | @rem ########################################################################## 19 | @rem 20 | @rem Gradle startup script for Windows 21 | @rem 22 | @rem ########################################################################## 23 | 24 | @rem Set local scope for the variables with windows NT shell 25 | if "%OS%"=="Windows_NT" setlocal 26 | 27 | set DIRNAME=%~dp0 28 | if "%DIRNAME%" == "" set DIRNAME=. 29 | set APP_BASE_NAME=%~n0 30 | set APP_HOME=%DIRNAME% 31 | 32 | @rem Resolve any "." and ".." in APP_HOME to make it shorter. 33 | for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi 34 | 35 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 36 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" 37 | 38 | @rem Find java.exe 39 | if defined JAVA_HOME goto findJavaFromJavaHome 40 | 41 | set JAVA_EXE=java.exe 42 | %JAVA_EXE% -version >NUL 2>&1 43 | if "%ERRORLEVEL%" == "0" goto execute 44 | 45 | echo. 46 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 47 | echo. 48 | echo Please set the JAVA_HOME variable in your environment to match the 49 | echo location of your Java installation. 50 | 51 | goto fail 52 | 53 | :findJavaFromJavaHome 54 | set JAVA_HOME=%JAVA_HOME:"=% 55 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 56 | 57 | if exist "%JAVA_EXE%" goto execute 58 | 59 | echo. 60 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 61 | echo. 62 | echo Please set the JAVA_HOME variable in your environment to match the 63 | echo location of your Java installation. 64 | 65 | goto fail 66 | 67 | :execute 68 | @rem Setup the command line 69 | 70 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 71 | 72 | 73 | @rem Execute Gradle 74 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* 75 | 76 | :end 77 | @rem End local scope for the variables with windows NT shell 78 | if "%ERRORLEVEL%"=="0" goto mainEnd 79 | 80 | :fail 81 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 82 | rem the _cmd.exe /c_ return code! 83 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 84 | exit /b 1 85 | 86 | :mainEnd 87 | if "%OS%"=="Windows_NT" endlocal 88 | 89 | :omega 90 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'OnlineLearningApp' 2 | apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings) 3 | include ':app' 4 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "OnlineLearningApp", 3 | "displayName": "OnlineLearningApp" 4 | } -------------------------------------------------------------------------------- /assets/fonts/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/fonts/Roboto-Black.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/fonts/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/fonts/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/fonts/Roboto-Italic.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/fonts/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/fonts/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/fonts/Roboto-Thin.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/fonts/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoCondensed-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/fonts/RobotoCondensed-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoCondensed-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/fonts/RobotoCondensed-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoCondensed-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/fonts/RobotoCondensed-Italic.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoCondensed-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/fonts/RobotoCondensed-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoCondensed-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/fonts/RobotoCondensed-LightItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoCondensed-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/fonts/RobotoCondensed-Regular.ttf -------------------------------------------------------------------------------- /assets/icons/all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/all.png -------------------------------------------------------------------------------- /assets/icons/animation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/animation.png -------------------------------------------------------------------------------- /assets/icons/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/back.png -------------------------------------------------------------------------------- /assets/icons/call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/call.png -------------------------------------------------------------------------------- /assets/icons/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/camera.png -------------------------------------------------------------------------------- /assets/icons/checkbox_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/checkbox_off.png -------------------------------------------------------------------------------- /assets/icons/checkbox_off_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/checkbox_off_dark.png -------------------------------------------------------------------------------- /assets/icons/checkbox_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/checkbox_on.png -------------------------------------------------------------------------------- /assets/icons/checkbox_on_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/checkbox_on_dark.png -------------------------------------------------------------------------------- /assets/icons/checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/checked.png -------------------------------------------------------------------------------- /assets/icons/coding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/coding.png -------------------------------------------------------------------------------- /assets/icons/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/comment.png -------------------------------------------------------------------------------- /assets/icons/completed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/completed.png -------------------------------------------------------------------------------- /assets/icons/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/download.png -------------------------------------------------------------------------------- /assets/icons/drawing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/drawing.png -------------------------------------------------------------------------------- /assets/icons/education.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/education.png -------------------------------------------------------------------------------- /assets/icons/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/email.png -------------------------------------------------------------------------------- /assets/icons/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/eye.png -------------------------------------------------------------------------------- /assets/icons/eye_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/eye_close.png -------------------------------------------------------------------------------- /assets/icons/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/facebook.png -------------------------------------------------------------------------------- /assets/icons/favourite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/favourite.png -------------------------------------------------------------------------------- /assets/icons/favourite_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/favourite_outline.png -------------------------------------------------------------------------------- /assets/icons/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/filter.png -------------------------------------------------------------------------------- /assets/icons/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/google.png -------------------------------------------------------------------------------- /assets/icons/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/heart.png -------------------------------------------------------------------------------- /assets/icons/heart_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/heart_off.png -------------------------------------------------------------------------------- /assets/icons/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/home.png -------------------------------------------------------------------------------- /assets/icons/illustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/illustration.png -------------------------------------------------------------------------------- /assets/icons/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/lock.png -------------------------------------------------------------------------------- /assets/icons/media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/media.png -------------------------------------------------------------------------------- /assets/icons/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/menu.png -------------------------------------------------------------------------------- /assets/icons/mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/mobile.png -------------------------------------------------------------------------------- /assets/icons/model_3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/model_3d.png -------------------------------------------------------------------------------- /assets/icons/networking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/networking.png -------------------------------------------------------------------------------- /assets/icons/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/new.png -------------------------------------------------------------------------------- /assets/icons/notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/notification.png -------------------------------------------------------------------------------- /assets/icons/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/original.png -------------------------------------------------------------------------------- /assets/icons/password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/password.png -------------------------------------------------------------------------------- /assets/icons/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/play.png -------------------------------------------------------------------------------- /assets/icons/play_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/play_1.png -------------------------------------------------------------------------------- /assets/icons/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/profile.png -------------------------------------------------------------------------------- /assets/icons/reminder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/reminder.png -------------------------------------------------------------------------------- /assets/icons/reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/reply.png -------------------------------------------------------------------------------- /assets/icons/right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/right_arrow.png -------------------------------------------------------------------------------- /assets/icons/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/search.png -------------------------------------------------------------------------------- /assets/icons/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/send.png -------------------------------------------------------------------------------- /assets/icons/staff_pick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/staff_pick.png -------------------------------------------------------------------------------- /assets/icons/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/star.png -------------------------------------------------------------------------------- /assets/icons/star_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/star_1.png -------------------------------------------------------------------------------- /assets/icons/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/sun.png -------------------------------------------------------------------------------- /assets/icons/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/time.png -------------------------------------------------------------------------------- /assets/icons/web_design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/icons/web_design.png -------------------------------------------------------------------------------- /assets/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/images/bg.png -------------------------------------------------------------------------------- /assets/images/bg_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/images/bg_1.png -------------------------------------------------------------------------------- /assets/images/bg_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/images/bg_2.png -------------------------------------------------------------------------------- /assets/images/bg_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/images/bg_3.png -------------------------------------------------------------------------------- /assets/images/bg_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/images/bg_4.png -------------------------------------------------------------------------------- /assets/images/bg_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/images/bg_5.png -------------------------------------------------------------------------------- /assets/images/bg_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/images/bg_6.png -------------------------------------------------------------------------------- /assets/images/bg_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/images/bg_dark.png -------------------------------------------------------------------------------- /assets/images/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/images/doc.png -------------------------------------------------------------------------------- /assets/images/featured_bg_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/images/featured_bg_image.png -------------------------------------------------------------------------------- /assets/images/mobile_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/images/mobile_image.png -------------------------------------------------------------------------------- /assets/images/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/images/pdf.png -------------------------------------------------------------------------------- /assets/images/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/images/profile.png -------------------------------------------------------------------------------- /assets/images/sketch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/images/sketch.png -------------------------------------------------------------------------------- /assets/images/start_learning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/images/start_learning.png -------------------------------------------------------------------------------- /assets/images/student_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/images/student_1.png -------------------------------------------------------------------------------- /assets/images/student_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/images/student_2.png -------------------------------------------------------------------------------- /assets/images/student_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/images/student_3.png -------------------------------------------------------------------------------- /assets/images/thumbnail_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/images/thumbnail_1.png -------------------------------------------------------------------------------- /assets/images/thumbnail_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/images/thumbnail_2.png -------------------------------------------------------------------------------- /assets/images/thumbnail_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/images/thumbnail_3.png -------------------------------------------------------------------------------- /assets/images/thumbnail_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/images/thumbnail_4.png -------------------------------------------------------------------------------- /assets/images/work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byprogrammers/LCRN17-online-learning-app-starter/3aacac470c652ca185959969b228eb3efa0b8e4f/assets/images/work.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: ['module:metro-react-native-babel-preset'], 3 | plugins: [ 4 | 'react-native-reanimated/plugin' 5 | ] 6 | }; -------------------------------------------------------------------------------- /constants/constants.js: -------------------------------------------------------------------------------- 1 | const register_options = [ 2 | { 3 | id: 0, 4 | label: "STUDENT" 5 | }, 6 | { 7 | id: 1, 8 | label: "TUTOR" 9 | } 10 | ] 11 | 12 | const walkthrough = [ 13 | { 14 | id: 0, 15 | title: "Explore Online Courses", 16 | sub_title: "All types of educational & professional courses available online.", 17 | image: require("../assets/images/work.png") 18 | }, 19 | { 20 | id: 1, 21 | title: "Explore Online Courses", 22 | sub_title: "All types of educational & professional courses available online.", 23 | image: require("../assets/images/work.png") 24 | }, 25 | { 26 | id: 2, 27 | title: "Explore Online Courses", 28 | sub_title: "All types of educational & professional courses available online.", 29 | image: require("../assets/images/work.png") 30 | }, 31 | ] 32 | 33 | const categories = [ 34 | { 35 | id: 0, 36 | label: "Mobile Design", 37 | icon: require("../assets/icons/mobile.png") 38 | }, 39 | { 40 | id: 1, 41 | label: "3D Modeling", 42 | icon: require("../assets/icons/model_3d.png") 43 | }, 44 | { 45 | id: 2, 46 | label: "Web Designing", 47 | icon: require("../assets/icons/web_design.png") 48 | }, 49 | { 50 | id: 3, 51 | label: "Illustrations", 52 | icon: require("../assets/icons/illustration.png") 53 | }, 54 | { 55 | id: 4, 56 | label: "Drawing", 57 | icon: require("../assets/icons/drawing.png") 58 | }, 59 | { 60 | id: 5, 61 | label: "Animation", 62 | icon: require("../assets/icons/animation.png") 63 | }, 64 | { 65 | id: 6, 66 | label: "Education", 67 | icon: require("../assets/icons/education.png") 68 | }, 69 | { 70 | id: 7, 71 | label: "Networking", 72 | icon: require("../assets/icons/networking.png") 73 | }, 74 | { 75 | id: 8, 76 | label: "Coding", 77 | icon: require("../assets/icons/coding.png") 78 | }, 79 | ] 80 | 81 | const screens = { 82 | home: "Home", 83 | search: "Search", 84 | profile: "Profile" 85 | } 86 | 87 | const bottom_tabs = [ 88 | { 89 | id: 0, 90 | label: screens.home, 91 | icon: require("../assets/icons/home.png") 92 | }, 93 | { 94 | id: 1, 95 | label: screens.search, 96 | icon: require("../assets/icons/search.png") 97 | }, 98 | { 99 | id: 2, 100 | label: screens.profile, 101 | icon: require("../assets/icons/profile.png") 102 | } 103 | ] 104 | 105 | const class_types = [ 106 | { 107 | id: 0, 108 | label: "All", 109 | icon: require("../assets/icons/all.png") 110 | }, 111 | { 112 | id: 1, 113 | label: "Staff Pick", 114 | icon: require("../assets/icons/staff_pick.png") 115 | }, 116 | { 117 | id: 2, 118 | label: "Original", 119 | icon: require("../assets/icons/original.png") 120 | }, 121 | ] 122 | 123 | const class_levels = [ 124 | { 125 | id: 0, 126 | label: "Beginner" 127 | }, 128 | { 129 | id: 1, 130 | label: "Intermediate" 131 | }, 132 | { 133 | id: 2, 134 | label: "Advanced" 135 | } 136 | ] 137 | 138 | const created_within = [ 139 | { 140 | id: 0, 141 | label: "All Time" 142 | }, 143 | { 144 | id: 1, 145 | label: "This Month" 146 | }, 147 | { 148 | id: 2, 149 | label: "This Week" 150 | }, 151 | { 152 | id: 3, 153 | label: "This Day" 154 | }, 155 | { 156 | id: 4, 157 | label: "2 Months" 158 | }, 159 | { 160 | id: 5, 161 | label: "4 Months" 162 | } 163 | ] 164 | 165 | const course_details_tabs = [ 166 | { 167 | id: 0, 168 | label: "Chapters", 169 | }, 170 | { 171 | id: 1, 172 | label: "Files", 173 | }, 174 | { 175 | id: 2, 176 | label: "Discussions", 177 | } 178 | ] 179 | 180 | export default { 181 | register_options, 182 | walkthrough, 183 | categories, 184 | screens, 185 | bottom_tabs, 186 | class_types, 187 | class_levels, 188 | created_within, 189 | course_details_tabs 190 | } -------------------------------------------------------------------------------- /constants/dummyData.js: -------------------------------------------------------------------------------- 1 | const categories = [ 2 | { 3 | id: 0, 4 | title: "Mobile Design", 5 | thumbnail: require("../assets/images/bg_1.png") 6 | }, 7 | { 8 | id: 1, 9 | title: "3D Modeling", 10 | thumbnail: require("../assets/images/bg_2.png") 11 | }, 12 | { 13 | id: 2, 14 | title: "Web Designing", 15 | thumbnail: require("../assets/images/bg_3.png") 16 | }, 17 | { 18 | id: 3, 19 | title: "Illustrations", 20 | thumbnail: require("../assets/images/bg_4.png") 21 | }, 22 | { 23 | id: 4, 24 | title: "Drawing", 25 | thumbnail: require("../assets/images/bg_5.png") 26 | }, 27 | { 28 | id: 5, 29 | title: "Animation", 30 | thumbnail: require("../assets/images/bg_6.png") 31 | } 32 | ] 33 | 34 | const courses_list_1 = [ 35 | { 36 | id: 0, 37 | title: "Canava Graphic Design Course - Beginner", 38 | duration: "2h 30m", 39 | thumbnail: require("../assets/images/thumbnail_1.png") 40 | }, 41 | { 42 | id: 1, 43 | title: "The Complete Presentation and speech", 44 | duration: "1h 30m", 45 | thumbnail: require("../assets/images/thumbnail_2.png") 46 | } 47 | ] 48 | 49 | const courses_list_2 = [ 50 | { 51 | id: 0, 52 | title: "The Ultimate Ui/Ux Course Beginner to Advanced", 53 | duration: "2h 30m", 54 | instructor: "James Morris", 55 | ratings: 4.9, 56 | price: 75, 57 | is_favourite: true, 58 | thumbnail: require("../assets/images/thumbnail_1.png") 59 | }, 60 | { 61 | id: 1, 62 | title: "The Ultimate Ui/Ux Course Beginner to Advanced", 63 | duration: "2h 30m", 64 | instructor: "James Morris", 65 | ratings: 4.9, 66 | price: 75, 67 | is_favourite: false, 68 | thumbnail: require("../assets/images/thumbnail_2.png") 69 | }, 70 | { 71 | id: 2, 72 | title: "The Ultimate Ui/Ux Course Beginner to Advanced", 73 | duration: "2h 30m", 74 | instructor: "James Morris", 75 | ratings: 4.9, 76 | price: 75, 77 | is_favourite: true, 78 | thumbnail: require("../assets/images/thumbnail_3.png") 79 | }, 80 | { 81 | id: 3, 82 | title: "The Ultimate Ui/Ux Course Beginner to Advanced", 83 | duration: "2h 30m", 84 | instructor: "James Morris", 85 | ratings: 4.9, 86 | price: 75, 87 | is_favourite: false, 88 | thumbnail: require("../assets/images/thumbnail_4.png") 89 | }, 90 | { 91 | id: 4, 92 | title: "The Ultimate Ui/Ux Course Beginner to Advanced", 93 | duration: "2h 30m", 94 | instructor: "James Morris", 95 | ratings: 4.9, 96 | price: 75, 97 | is_favourite: false, 98 | thumbnail: require("../assets/images/thumbnail_4.png") 99 | }, 100 | { 101 | id: 5, 102 | title: "The Ultimate Ui/Ux Course Beginner to Advanced", 103 | duration: "2h 30m", 104 | instructor: "James Morris", 105 | ratings: 4.9, 106 | price: 75, 107 | is_favourite: false, 108 | thumbnail: require("../assets/images/thumbnail_4.png") 109 | } 110 | ] 111 | 112 | const top_searches = [ 113 | { 114 | id: 0, 115 | label: "Sketch" 116 | }, 117 | { 118 | id: 1, 119 | label: "Modeling" 120 | }, 121 | { 122 | id: 2, 123 | label: "UI/UX" 124 | }, 125 | { 126 | id: 3, 127 | label: "Web" 128 | }, 129 | { 130 | id: 4, 131 | label: "Mobile" 132 | }, 133 | { 134 | id: 5, 135 | label: "Animation" 136 | }, 137 | ] 138 | 139 | const course_details = { 140 | id: 0, 141 | title: "The Ultimate Ui/Ux Course Beginner to Advanced", 142 | number_of_students: "33.5k Students", 143 | duration: "2h 30m", 144 | instructor: { 145 | name: "ByProgrammers", 146 | title: "Full Stack Programmer" 147 | }, 148 | videos: [ 149 | { 150 | title: "1. Introduction", 151 | duration: "1:37", 152 | size: "10 MB", 153 | progress: "100%", 154 | is_playing: false, 155 | is_complete: true, 156 | is_lock: false, 157 | is_downloaded: false, 158 | }, 159 | { 160 | title: "2. User Interface", 161 | duration: "1:15:00", 162 | size: "200 MB", 163 | progress: "100%", 164 | is_playing: true, 165 | is_complete: false, 166 | is_lock: false, 167 | is_downloaded: true, 168 | }, 169 | { 170 | title: "3. User Experience", 171 | duration: "1:27:00", 172 | size: "230 MB", 173 | progress: "0%", 174 | is_playing: false, 175 | is_complete: false, 176 | is_lock: true, 177 | is_downloaded: false, 178 | } 179 | ], 180 | students: [ 181 | { 182 | id: 0, 183 | name: "Student 1", 184 | thumbnail: require("../assets/images/student_1.png") 185 | }, 186 | { 187 | id: 1, 188 | name: "Student 2", 189 | thumbnail: require("../assets/images/student_2.png") 190 | }, 191 | { 192 | id: 2, 193 | name: "Student 3", 194 | thumbnail: require("../assets/images/student_3.png") 195 | }, 196 | { 197 | id: 3, 198 | name: "Student 3", 199 | thumbnail: require("../assets/images/student_3.png") 200 | } 201 | ], 202 | files: [ 203 | { 204 | id: 0, 205 | name: "UI Fundamentals", 206 | author: "Shared by ByProgrammers", 207 | upload_date: "13th Sep 2021", 208 | thumbnail: require("../assets/images/pdf.png") 209 | }, 210 | { 211 | id: 1, 212 | name: "UX Checklist", 213 | author: "Shared by ByProgrammers", 214 | upload_date: "11th Sep 2021", 215 | thumbnail: require("../assets/images/doc.png") 216 | }, 217 | { 218 | id: 2, 219 | name: "Sketch File", 220 | author: "Shared by ByProgrammers", 221 | upload_date: "7th Sep 2021", 222 | thumbnail: require("../assets/images/sketch.png") 223 | } 224 | ], 225 | discussions: [ 226 | { 227 | id: 0, 228 | profile: require("../assets/images/profile.png"), 229 | name: "ByProgrammers", 230 | no_of_comments: "11 comments", 231 | no_of_likes: "72 likes", 232 | posted_on: "5 days ago", 233 | comment: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.", 234 | replies: [ 235 | { 236 | id: 0, 237 | profile: require("../assets/images/student_1.png"), 238 | name: "ByProgrammers", 239 | posted_on: "4 days ago", 240 | comment: "Lorem ipsum dolor sit amet, consectetur adipiscing elit", 241 | }, 242 | { 243 | id: 1, 244 | profile: require("../assets/images/student_1.png"), 245 | name: "ByProgrammers", 246 | posted_on: "4 days ago", 247 | comment: "Lorem ipsum dolor sit amet, consectetur adipiscing elit", 248 | }, 249 | { 250 | id: 2, 251 | profile: require("../assets/images/student_1.png"), 252 | name: "ByProgrammers", 253 | posted_on: "4 days ago", 254 | comment: "Lorem ipsum dolor sit amet, consectetur adipiscing elit", 255 | }, 256 | { 257 | id: 3, 258 | profile: require("../assets/images/student_1.png"), 259 | name: "ByProgrammers", 260 | posted_on: "4 days ago", 261 | comment: "Lorem ipsum dolor sit amet, consectetur adipiscing elit", 262 | }, 263 | ] 264 | }, 265 | { 266 | id: 1, 267 | profile: require("../assets/images/profile.png"), 268 | name: "ByProgrammers", 269 | no_of_comments: "21 comments", 270 | no_of_likes: "372 likes", 271 | posted_on: "14 days ago", 272 | comment: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.", 273 | replies: [ 274 | { 275 | id: 0, 276 | profile: require("../assets/images/student_1.png"), 277 | name: "ByProgrammers", 278 | posted_on: "7 days ago", 279 | comment: "Lorem ipsum dolor sit amet, consectetur adipiscing elit", 280 | }, 281 | { 282 | id: 1, 283 | profile: require("../assets/images/student_1.png"), 284 | name: "ByProgrammers", 285 | posted_on: "7 days ago", 286 | comment: "Lorem ipsum dolor sit amet, consectetur adipiscing elit", 287 | }, 288 | { 289 | id: 2, 290 | profile: require("../assets/images/student_1.png"), 291 | name: "ByProgrammers", 292 | posted_on: "7 days ago", 293 | comment: "Lorem ipsum dolor sit amet, consectetur adipiscing elit", 294 | }, 295 | ] 296 | } 297 | ] 298 | } 299 | 300 | const notificationByDays = [ 301 | { 302 | title: "Today", 303 | data: [ 304 | { 305 | id: 1, 306 | avatar: require("../assets/images/student_1.png"), 307 | name: "Admin", 308 | created_at: "2h 47m ago", 309 | message: "Asked to join online courses regarding professional web designing." 310 | }, 311 | { 312 | id: 2, 313 | avatar: require("../assets/images/student_2.png"), 314 | name: "Customer Care", 315 | created_at: "3h 02m ago", 316 | message: "Your 50% discount code is: ON50DIS. Apply on checkout." 317 | }, 318 | { 319 | id: 3, 320 | avatar: require("../assets/images/student_3.png"), 321 | name: "Lilian Ellis", 322 | created_at: "4h 32m ago", 323 | message: "Asked assiged you to watch professional videography course." 324 | } 325 | ], 326 | 327 | }, 328 | { 329 | title: "Yesterday", 330 | data: [ 331 | { 332 | id: 4, 333 | avatar: require("../assets/images/student_1.png"), 334 | name: "Admin", 335 | created_at: "16h 47m ago", 336 | message: "You just signed in from another device check inbox for more details." 337 | }, 338 | { 339 | id: 5, 340 | avatar: require("../assets/images/student_2.png"), 341 | name: "Customer Care", 342 | created_at: "20h 02m ago", 343 | message: "Your 50% discount code is: ON50DIS. Apply on checkout." 344 | }, 345 | ], 346 | 347 | }, 348 | ] 349 | 350 | export default { 351 | categories, 352 | courses_list_1, 353 | courses_list_2, 354 | top_searches, 355 | course_details, 356 | notificationByDays, 357 | } -------------------------------------------------------------------------------- /constants/icons.js: -------------------------------------------------------------------------------- 1 | 2 | const all = require("../assets/icons/all.png") 3 | const animation = require("../assets/icons/animation.png") 4 | const back = require("../assets/icons/back.png") 5 | const call = require("../assets/icons/call.png") 6 | const camera = require("../assets/icons/camera.png") 7 | const checkbox_off = require("../assets/icons/checkbox_off.png") 8 | const checkbox_off_dark = require("../assets/icons/checkbox_off_dark.png") 9 | const checkbox_on = require("../assets/icons/checkbox_on.png") 10 | const checkbox_on_dark = require("../assets/icons/checkbox_on_dark.png") 11 | const checked = require("../assets/icons/checked.png") 12 | const coding = require("../assets/icons/coding.png") 13 | const comment = require("../assets/icons/comment.png") 14 | const completed = require("../assets/icons/completed.png") 15 | const download = require("../assets/icons/download.png") 16 | const drawing = require("../assets/icons/drawing.png") 17 | const education = require("../assets/icons/education.png") 18 | const email = require("../assets/icons/email.png") 19 | const eye = require("../assets/icons/eye.png") 20 | const eye_close = require("../assets/icons/eye_close.png") 21 | const facebook = require("../assets/icons/facebook.png") 22 | const favourite = require("../assets/icons/favourite.png") 23 | const favourite_outline = require("../assets/icons/favourite_outline.png") 24 | const filter = require("../assets/icons/filter.png") 25 | const google = require("../assets/icons/google.png") 26 | const heart = require("../assets/icons/heart.png") 27 | const heart_off = require("../assets/icons/heart_off.png") 28 | const home = require("../assets/icons/home.png") 29 | const illustration = require("../assets/icons/illustration.png") 30 | const lock = require("../assets/icons/lock.png") 31 | const media = require("../assets/icons/media.png") 32 | const menu = require("../assets/icons/menu.png") 33 | const mobile = require("../assets/icons/mobile.png") 34 | const model_3d = require("../assets/icons/model_3d.png") 35 | const networking = require("../assets/icons/networking.png") 36 | const new_icon = require("../assets/icons/new.png") 37 | const notification = require("../assets/icons/notification.png") 38 | const original = require("../assets/icons/original.png") 39 | const password = require("../assets/icons/password.png") 40 | const play = require("../assets/icons/play.png") 41 | const play_1 = require("../assets/icons/play_1.png") 42 | const profile = require("../assets/icons/profile.png") 43 | const reminder = require("../assets/icons/reminder.png") 44 | const reply = require("../assets/icons/reply.png") 45 | const right_arrow = require("../assets/icons/right_arrow.png") 46 | const search = require("../assets/icons/search.png") 47 | const send = require("../assets/icons/send.png") 48 | const staff_pick = require("../assets/icons/staff_pick.png") 49 | const star = require("../assets/icons/star.png") 50 | const star_1 = require("../assets/icons/star_1.png") 51 | const sun = require("../assets/icons/sun.png") 52 | const time = require("../assets/icons/time.png") 53 | const web_design = require("../assets/icons/web_design.png") 54 | 55 | export default { 56 | all, 57 | animation, 58 | back, 59 | call, 60 | camera, 61 | checkbox_off, 62 | checkbox_off_dark, 63 | checkbox_on, 64 | checkbox_on_dark, 65 | checked, 66 | coding, 67 | comment, 68 | completed, 69 | download, 70 | drawing, 71 | education, 72 | email, 73 | eye, 74 | eye_close, 75 | facebook, 76 | favourite, 77 | favourite_outline, 78 | filter, 79 | google, 80 | heart, 81 | heart_off, 82 | home, 83 | illustration, 84 | lock, 85 | media, 86 | menu, 87 | mobile, 88 | model_3d, 89 | networking, 90 | new_icon, 91 | notification, 92 | original, 93 | password, 94 | play, 95 | play_1, 96 | profile, 97 | reminder, 98 | reply, 99 | right_arrow, 100 | search, 101 | send, 102 | staff_pick, 103 | star, 104 | star_1, 105 | sun, 106 | time, 107 | web_design 108 | } -------------------------------------------------------------------------------- /constants/images.js: -------------------------------------------------------------------------------- 1 | const bg = require("../assets/images/bg.png") 2 | const bg_dark = require("../assets/images/bg_dark.png") 3 | const doc = require("../assets/images/doc.png") 4 | const bg_1 = require("../assets/images/bg_1.png") 5 | const work = require("../assets/images/work.png") 6 | const featured_bg_image = require("../assets/images/featured_bg_image.png") 7 | const mobile_image = require("../assets/images/mobile_image.png") 8 | const pdf = require("../assets/images/pdf.png") 9 | const profile = require("../assets/images/profile.png") 10 | const sketch = require("../assets/images/sketch.png") 11 | const start_learning = require("../assets/images/start_learning.png") 12 | const student_1 = require("../assets/images/student_1.png") 13 | const student_2 = require("../assets/images/student_2.png") 14 | const student_3 = require("../assets/images/student_3.png") 15 | const thumbnail_1 = require("../assets/images/thumbnail_1.png") 16 | const thumbnail_2 = require("../assets/images/thumbnail_2.png") 17 | const thumbnail_3 = require("../assets/images/thumbnail_3.png") 18 | const thumbnail_4 = require("../assets/images/thumbnail_4.png") 19 | 20 | export default { 21 | bg, 22 | bg_dark, 23 | doc, 24 | bg_1, 25 | work, 26 | 27 | featured_bg_image, 28 | mobile_image, 29 | pdf, 30 | profile, 31 | sketch, 32 | start_learning, 33 | 34 | student_1, 35 | student_2, 36 | student_3, 37 | 38 | thumbnail_1, 39 | thumbnail_2, 40 | thumbnail_3, 41 | thumbnail_4, 42 | } -------------------------------------------------------------------------------- /constants/index.js: -------------------------------------------------------------------------------- 1 | import constants from "./constants"; 2 | import theme, { COLORS, SIZES, FONTS, darkTheme, lightTheme, selectedTheme } from "./theme"; 3 | import images from "./images"; 4 | import icons from "./icons"; 5 | import dummyData from "./dummyData" 6 | 7 | export { 8 | constants, 9 | theme, 10 | COLORS, 11 | SIZES, 12 | FONTS, 13 | darkTheme, 14 | lightTheme, 15 | selectedTheme, 16 | images, 17 | icons, 18 | dummyData, 19 | } 20 | 21 | -------------------------------------------------------------------------------- /constants/theme.js: -------------------------------------------------------------------------------- 1 | import { Dimensions } from "react-native"; 2 | const { width, height } = Dimensions.get("window"); 3 | 4 | export const COLORS = { 5 | primary: "#42C6A5", // Green 6 | primary2: "#FBB344", // Orange 7 | primary3: "#33354E", // Dark Blue 8 | secondary: "#FC2626", // Red 9 | gray10: "#E5E5E5", 10 | gray20: "#CCCCCC", 11 | gray30: "#A1A1A1", 12 | gray40: "#999999", 13 | gray50: "#7F7F7F", 14 | gray60: "#666666", 15 | gray70: "#4C4C4C", 16 | gray80: "#333333", 17 | gray85: "#242526", 18 | gray90: "#191919", 19 | 20 | additionalColor4: "#C3C3C3", 21 | additionalColor9: "#F3F3F3", 22 | additionalColor11: "#F0FFFB", 23 | additionalColor13: "#EBF3EF", 24 | 25 | white: '#FFFFFF', 26 | black: "#000000", 27 | 28 | transparent: 'transparent', 29 | transparentWhite1: "rgba(255, 255, 255, 0.1)", 30 | transparentBlack1: "rgba(0, 0, 0, 0.1)", 31 | transparentBlack7: "rgba(0, 0, 0, 0.7)" 32 | }; 33 | export const SIZES = { 34 | // global sizes 35 | base: 8, 36 | font: 14, 37 | radius: 12, 38 | padding: 24, 39 | 40 | // font sizes 41 | largeTitle: 40, 42 | h1: 30, 43 | h2: 22, 44 | h3: 16, 45 | h4: 14, 46 | h5: 12, 47 | body1: 30, 48 | body2: 22, 49 | body3: 16, 50 | body4: 14, 51 | body5: 12, 52 | 53 | // app dimensions 54 | width, 55 | height 56 | }; 57 | export const FONTS = { 58 | largeTitle: { fontFamily: "Roboto-Black", fontSize: SIZES.largeTitle }, 59 | h1: { fontFamily: "Roboto-Black", fontSize: SIZES.h1, lineHeight: 36 }, 60 | h2: { fontFamily: "Roboto-Bold", fontSize: SIZES.h2, lineHeight: 30 }, 61 | h3: { fontFamily: "Roboto-Bold", fontSize: SIZES.h3, lineHeight: 22 }, 62 | h4: { fontFamily: "Roboto-Bold", fontSize: SIZES.h4, lineHeight: 22 }, 63 | h5: { fontFamily: "Roboto-Bold", fontSize: SIZES.h5, lineHeight: 22 }, 64 | body1: { fontFamily: "Roboto-Regular", fontSize: SIZES.body1, lineHeight: 36 }, 65 | body2: { fontFamily: "Roboto-Regular", fontSize: SIZES.body2, lineHeight: 30 }, 66 | body3: { fontFamily: "Roboto-Regular", fontSize: SIZES.body3, lineHeight: 22 }, 67 | body4: { fontFamily: "Roboto-Regular", fontSize: SIZES.body4, lineHeight: 22 }, 68 | body5: { fontFamily: "Roboto-Regular", fontSize: SIZES.body5, lineHeight: 22 }, 69 | }; 70 | 71 | export const darkTheme = { 72 | name: "dark", 73 | backgroundColor1: COLORS.gray85, 74 | backgroundColor2: COLORS.gray90, 75 | backgroundColor3: COLORS.gray90, 76 | backgroundColor4: COLORS.primary, 77 | backgroundColor5: COLORS.gray85, 78 | backgroundColor6: COLORS.black, 79 | backgroundColor7: COLORS.gray90, 80 | backgroundColor8: COLORS.gray70, 81 | lineDivider: COLORS.gray70, 82 | borderColor1: COLORS.gray70, 83 | borderColor2: COLORS.gray70, 84 | textColor: COLORS.white, 85 | textColor2: COLORS.white, 86 | textColor3: COLORS.gray40, 87 | textColor4: COLORS.white, 88 | textColor5: COLORS.gray30, 89 | textColor6: COLORS.gray30, 90 | textColor7: COLORS.gray40, 91 | tintColor: COLORS.white, 92 | dotColor1: COLORS.white, 93 | dotColor2: COLORS.primary, 94 | } 95 | 96 | export const lightTheme = { 97 | name: "light", 98 | backgroundColor1: COLORS.white, 99 | backgroundColor2: COLORS.primary3, 100 | backgroundColor3: COLORS.additionalColor11, 101 | backgroundColor4: COLORS.white, 102 | backgroundColor5: COLORS.additionalColor13, 103 | backgroundColor6: COLORS.primary3, 104 | backgroundColor7: COLORS.white, 105 | backgroundColor8: COLORS.gray10, 106 | lineDivider: COLORS.gray20, 107 | borderColor1: COLORS.white, 108 | borderColor2: COLORS.black, 109 | textColor: COLORS.black, 110 | textColor2: COLORS.primary, 111 | textColor3: COLORS.gray80, 112 | textColor4: COLORS.white, 113 | textColor5: COLORS.black, 114 | textColor6: COLORS.gray, 115 | textColor7: COLORS.black, 116 | tintColor: COLORS.black, 117 | dotColor1: COLORS.gray20, 118 | dotColor2: COLORS.primary3, 119 | } 120 | 121 | export const selectedTheme = darkTheme 122 | 123 | const appTheme = { COLORS, SIZES, FONTS, darkTheme, lightTheme }; 124 | 125 | export default appTheme; 126 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | */ 4 | 5 | import {AppRegistry} from 'react-native'; 6 | import App from './App'; 7 | import {name as appName} from './app.json'; 8 | 9 | AppRegistry.registerComponent(appName, () => App); 10 | -------------------------------------------------------------------------------- /ios/OnlineLearningApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 54; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 00E356F31AD99517003FC87E /* OnlineLearningAppTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* OnlineLearningAppTests.m */; }; 11 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 12 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 13 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 14 | 19C378DBE15440FC8A12EB83 /* Roboto-BlackItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 85F7CCE70AE442B98500EB77 /* Roboto-BlackItalic.ttf */; }; 15 | 1EE07C1BDB3D498685367FCD /* RobotoCondensed-BoldItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 5434601D4968462AAD9F84EF /* RobotoCondensed-BoldItalic.ttf */; }; 16 | 2AAFDC7FC8AE403AA587745C /* RobotoCondensed-Bold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 23824B1324D844969EA00ED1 /* RobotoCondensed-Bold.ttf */; }; 17 | 414F6FAA9E1E4B43ACDD0386 /* Roboto-LightItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 742697B066C7470B95411866 /* Roboto-LightItalic.ttf */; }; 18 | 4E6EC50413A741C8A250B2D0 /* Roboto-Light.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 0114A661BCF141A0A1174BCE /* Roboto-Light.ttf */; }; 19 | 562F108F697D4CE6A29DA702 /* RobotoCondensed-Italic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 4FA5E4F6C108489895776D2B /* RobotoCondensed-Italic.ttf */; }; 20 | 672386FFC75F4B3FB5248D4B /* RobotoCondensed-LightItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 00275B13B4184ECC98AF0038 /* RobotoCondensed-LightItalic.ttf */; }; 21 | 6909BDC01BEA1D4D3782F602 /* libPods-OnlineLearningApp.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D535DC7BAB08967C4EF6D9B1 /* libPods-OnlineLearningApp.a */; }; 22 | 74C0BCB37EFC44AB9FA28671 /* Roboto-Medium.ttf in Resources */ = {isa = PBXBuildFile; fileRef = CA4B3AF4CC874B7A95CDE586 /* Roboto-Medium.ttf */; }; 23 | 80EC21C5BD564FA7895A9D6B /* Roboto-Thin.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 71F6D021729A4CE4B754C9A2 /* Roboto-Thin.ttf */; }; 24 | 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; }; 25 | 863AF4E38C354DD49C16401D /* Roboto-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 73C689489E964123AC139373 /* Roboto-Regular.ttf */; }; 26 | A242892F180F4C4390955603 /* RobotoCondensed-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 0425FBF3B59D4D16A22DFA67 /* RobotoCondensed-Regular.ttf */; }; 27 | A49A84131B734931AC6F6227 /* Roboto-MediumItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 0C8D1CB7018B42109298B42F /* Roboto-MediumItalic.ttf */; }; 28 | AA1447D940A0183C337067D0 /* libPods-OnlineLearningApp-OnlineLearningAppTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = AC7063B7EECF2F730D416165 /* libPods-OnlineLearningApp-OnlineLearningAppTests.a */; }; 29 | AF3E4B38C80144728744893B /* Roboto-Black.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 448EB25DF71A4D67B4D9B415 /* Roboto-Black.ttf */; }; 30 | B08B1F1EDCED480FB29ECB04 /* Roboto-BoldItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = B20A5A49C9DF4074B0039EA5 /* Roboto-BoldItalic.ttf */; }; 31 | BF7605769D104F968C103B63 /* RobotoCondensed-Light.ttf in Resources */ = {isa = PBXBuildFile; fileRef = CBA63373112E43D2A8B87BC5 /* RobotoCondensed-Light.ttf */; }; 32 | CDCD7BA42C924259BD3FF56B /* Roboto-Bold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2F42583C2FBF4DC9BEC40893 /* Roboto-Bold.ttf */; }; 33 | D80067528E644AA687387C7A /* Roboto-Italic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 1369CE1DB66341BB892862FB /* Roboto-Italic.ttf */; }; 34 | FB992BEAA9CB44D49E00E5FA /* Roboto-ThinItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 54EE27BB09184CACB7707AFB /* Roboto-ThinItalic.ttf */; }; 35 | /* End PBXBuildFile section */ 36 | 37 | /* Begin PBXContainerItemProxy section */ 38 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 39 | isa = PBXContainerItemProxy; 40 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 41 | proxyType = 1; 42 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 43 | remoteInfo = OnlineLearningApp; 44 | }; 45 | /* End PBXContainerItemProxy section */ 46 | 47 | /* Begin PBXFileReference section */ 48 | 00275B13B4184ECC98AF0038 /* RobotoCondensed-LightItalic.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "RobotoCondensed-LightItalic.ttf"; path = "../assets/fonts/RobotoCondensed-LightItalic.ttf"; sourceTree = ""; }; 49 | 00E356EE1AD99517003FC87E /* OnlineLearningAppTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = OnlineLearningAppTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 50 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 51 | 00E356F21AD99517003FC87E /* OnlineLearningAppTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = OnlineLearningAppTests.m; sourceTree = ""; }; 52 | 0114A661BCF141A0A1174BCE /* Roboto-Light.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Roboto-Light.ttf"; path = "../assets/fonts/Roboto-Light.ttf"; sourceTree = ""; }; 53 | 0425FBF3B59D4D16A22DFA67 /* RobotoCondensed-Regular.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "RobotoCondensed-Regular.ttf"; path = "../assets/fonts/RobotoCondensed-Regular.ttf"; sourceTree = ""; }; 54 | 083D119A768F2E00B2C05F78 /* Pods-OnlineLearningApp-OnlineLearningAppTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-OnlineLearningApp-OnlineLearningAppTests.debug.xcconfig"; path = "Target Support Files/Pods-OnlineLearningApp-OnlineLearningAppTests/Pods-OnlineLearningApp-OnlineLearningAppTests.debug.xcconfig"; sourceTree = ""; }; 55 | 0C8D1CB7018B42109298B42F /* Roboto-MediumItalic.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Roboto-MediumItalic.ttf"; path = "../assets/fonts/Roboto-MediumItalic.ttf"; sourceTree = ""; }; 56 | 1369CE1DB66341BB892862FB /* Roboto-Italic.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Roboto-Italic.ttf"; path = "../assets/fonts/Roboto-Italic.ttf"; sourceTree = ""; }; 57 | 13B07F961A680F5B00A75B9A /* OnlineLearningApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = OnlineLearningApp.app; sourceTree = BUILT_PRODUCTS_DIR; }; 58 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = OnlineLearningApp/AppDelegate.h; sourceTree = ""; }; 59 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = OnlineLearningApp/AppDelegate.m; sourceTree = ""; }; 60 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = OnlineLearningApp/Images.xcassets; sourceTree = ""; }; 61 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = OnlineLearningApp/Info.plist; sourceTree = ""; }; 62 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = OnlineLearningApp/main.m; sourceTree = ""; }; 63 | 23824B1324D844969EA00ED1 /* RobotoCondensed-Bold.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "RobotoCondensed-Bold.ttf"; path = "../assets/fonts/RobotoCondensed-Bold.ttf"; sourceTree = ""; }; 64 | 2F42583C2FBF4DC9BEC40893 /* Roboto-Bold.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Roboto-Bold.ttf"; path = "../assets/fonts/Roboto-Bold.ttf"; sourceTree = ""; }; 65 | 4269E48D38402DD6D67595F6 /* Pods-OnlineLearningApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-OnlineLearningApp.debug.xcconfig"; path = "Target Support Files/Pods-OnlineLearningApp/Pods-OnlineLearningApp.debug.xcconfig"; sourceTree = ""; }; 66 | 448EB25DF71A4D67B4D9B415 /* Roboto-Black.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Roboto-Black.ttf"; path = "../assets/fonts/Roboto-Black.ttf"; sourceTree = ""; }; 67 | 4FA5E4F6C108489895776D2B /* RobotoCondensed-Italic.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "RobotoCondensed-Italic.ttf"; path = "../assets/fonts/RobotoCondensed-Italic.ttf"; sourceTree = ""; }; 68 | 5434601D4968462AAD9F84EF /* RobotoCondensed-BoldItalic.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "RobotoCondensed-BoldItalic.ttf"; path = "../assets/fonts/RobotoCondensed-BoldItalic.ttf"; sourceTree = ""; }; 69 | 54EE27BB09184CACB7707AFB /* Roboto-ThinItalic.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Roboto-ThinItalic.ttf"; path = "../assets/fonts/Roboto-ThinItalic.ttf"; sourceTree = ""; }; 70 | 5B42060EFED6B4FDB0879979 /* Pods-OnlineLearningApp-OnlineLearningAppTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-OnlineLearningApp-OnlineLearningAppTests.release.xcconfig"; path = "Target Support Files/Pods-OnlineLearningApp-OnlineLearningAppTests/Pods-OnlineLearningApp-OnlineLearningAppTests.release.xcconfig"; sourceTree = ""; }; 71 | 71F6D021729A4CE4B754C9A2 /* Roboto-Thin.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Roboto-Thin.ttf"; path = "../assets/fonts/Roboto-Thin.ttf"; sourceTree = ""; }; 72 | 73C689489E964123AC139373 /* Roboto-Regular.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Roboto-Regular.ttf"; path = "../assets/fonts/Roboto-Regular.ttf"; sourceTree = ""; }; 73 | 742697B066C7470B95411866 /* Roboto-LightItalic.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Roboto-LightItalic.ttf"; path = "../assets/fonts/Roboto-LightItalic.ttf"; sourceTree = ""; }; 74 | 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = OnlineLearningApp/LaunchScreen.storyboard; sourceTree = ""; }; 75 | 85F7CCE70AE442B98500EB77 /* Roboto-BlackItalic.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Roboto-BlackItalic.ttf"; path = "../assets/fonts/Roboto-BlackItalic.ttf"; sourceTree = ""; }; 76 | AC7063B7EECF2F730D416165 /* libPods-OnlineLearningApp-OnlineLearningAppTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-OnlineLearningApp-OnlineLearningAppTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 77 | B20A5A49C9DF4074B0039EA5 /* Roboto-BoldItalic.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Roboto-BoldItalic.ttf"; path = "../assets/fonts/Roboto-BoldItalic.ttf"; sourceTree = ""; }; 78 | CA4B3AF4CC874B7A95CDE586 /* Roboto-Medium.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "Roboto-Medium.ttf"; path = "../assets/fonts/Roboto-Medium.ttf"; sourceTree = ""; }; 79 | CBA63373112E43D2A8B87BC5 /* RobotoCondensed-Light.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = "RobotoCondensed-Light.ttf"; path = "../assets/fonts/RobotoCondensed-Light.ttf"; sourceTree = ""; }; 80 | D535DC7BAB08967C4EF6D9B1 /* libPods-OnlineLearningApp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-OnlineLearningApp.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 81 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; 82 | FF57E5791648138699B4F441 /* Pods-OnlineLearningApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-OnlineLearningApp.release.xcconfig"; path = "Target Support Files/Pods-OnlineLearningApp/Pods-OnlineLearningApp.release.xcconfig"; sourceTree = ""; }; 83 | /* End PBXFileReference section */ 84 | 85 | /* Begin PBXFrameworksBuildPhase section */ 86 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 87 | isa = PBXFrameworksBuildPhase; 88 | buildActionMask = 2147483647; 89 | files = ( 90 | AA1447D940A0183C337067D0 /* libPods-OnlineLearningApp-OnlineLearningAppTests.a in Frameworks */, 91 | ); 92 | runOnlyForDeploymentPostprocessing = 0; 93 | }; 94 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 95 | isa = PBXFrameworksBuildPhase; 96 | buildActionMask = 2147483647; 97 | files = ( 98 | 6909BDC01BEA1D4D3782F602 /* libPods-OnlineLearningApp.a in Frameworks */, 99 | ); 100 | runOnlyForDeploymentPostprocessing = 0; 101 | }; 102 | /* End PBXFrameworksBuildPhase section */ 103 | 104 | /* Begin PBXGroup section */ 105 | 00E356EF1AD99517003FC87E /* OnlineLearningAppTests */ = { 106 | isa = PBXGroup; 107 | children = ( 108 | 00E356F21AD99517003FC87E /* OnlineLearningAppTests.m */, 109 | 00E356F01AD99517003FC87E /* Supporting Files */, 110 | ); 111 | path = OnlineLearningAppTests; 112 | sourceTree = ""; 113 | }; 114 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 115 | isa = PBXGroup; 116 | children = ( 117 | 00E356F11AD99517003FC87E /* Info.plist */, 118 | ); 119 | name = "Supporting Files"; 120 | sourceTree = ""; 121 | }; 122 | 13B07FAE1A68108700A75B9A /* OnlineLearningApp */ = { 123 | isa = PBXGroup; 124 | children = ( 125 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 126 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 127 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 128 | 13B07FB61A68108700A75B9A /* Info.plist */, 129 | 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */, 130 | 13B07FB71A68108700A75B9A /* main.m */, 131 | ); 132 | name = OnlineLearningApp; 133 | sourceTree = ""; 134 | }; 135 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { 136 | isa = PBXGroup; 137 | children = ( 138 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */, 139 | D535DC7BAB08967C4EF6D9B1 /* libPods-OnlineLearningApp.a */, 140 | AC7063B7EECF2F730D416165 /* libPods-OnlineLearningApp-OnlineLearningAppTests.a */, 141 | ); 142 | name = Frameworks; 143 | sourceTree = ""; 144 | }; 145 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 146 | isa = PBXGroup; 147 | children = ( 148 | ); 149 | name = Libraries; 150 | sourceTree = ""; 151 | }; 152 | 83CBB9F61A601CBA00E9B192 = { 153 | isa = PBXGroup; 154 | children = ( 155 | 13B07FAE1A68108700A75B9A /* OnlineLearningApp */, 156 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 157 | 00E356EF1AD99517003FC87E /* OnlineLearningAppTests */, 158 | 83CBBA001A601CBA00E9B192 /* Products */, 159 | 2D16E6871FA4F8E400B85C8A /* Frameworks */, 160 | AF2023820AA7C9262FC666DE /* Pods */, 161 | AAA80296FCC34A119632FEAD /* Resources */, 162 | ); 163 | indentWidth = 2; 164 | sourceTree = ""; 165 | tabWidth = 2; 166 | usesTabs = 0; 167 | }; 168 | 83CBBA001A601CBA00E9B192 /* Products */ = { 169 | isa = PBXGroup; 170 | children = ( 171 | 13B07F961A680F5B00A75B9A /* OnlineLearningApp.app */, 172 | 00E356EE1AD99517003FC87E /* OnlineLearningAppTests.xctest */, 173 | ); 174 | name = Products; 175 | sourceTree = ""; 176 | }; 177 | AAA80296FCC34A119632FEAD /* Resources */ = { 178 | isa = PBXGroup; 179 | children = ( 180 | 448EB25DF71A4D67B4D9B415 /* Roboto-Black.ttf */, 181 | 85F7CCE70AE442B98500EB77 /* Roboto-BlackItalic.ttf */, 182 | 2F42583C2FBF4DC9BEC40893 /* Roboto-Bold.ttf */, 183 | B20A5A49C9DF4074B0039EA5 /* Roboto-BoldItalic.ttf */, 184 | 1369CE1DB66341BB892862FB /* Roboto-Italic.ttf */, 185 | 0114A661BCF141A0A1174BCE /* Roboto-Light.ttf */, 186 | 742697B066C7470B95411866 /* Roboto-LightItalic.ttf */, 187 | CA4B3AF4CC874B7A95CDE586 /* Roboto-Medium.ttf */, 188 | 0C8D1CB7018B42109298B42F /* Roboto-MediumItalic.ttf */, 189 | 73C689489E964123AC139373 /* Roboto-Regular.ttf */, 190 | 71F6D021729A4CE4B754C9A2 /* Roboto-Thin.ttf */, 191 | 54EE27BB09184CACB7707AFB /* Roboto-ThinItalic.ttf */, 192 | 23824B1324D844969EA00ED1 /* RobotoCondensed-Bold.ttf */, 193 | 5434601D4968462AAD9F84EF /* RobotoCondensed-BoldItalic.ttf */, 194 | 4FA5E4F6C108489895776D2B /* RobotoCondensed-Italic.ttf */, 195 | CBA63373112E43D2A8B87BC5 /* RobotoCondensed-Light.ttf */, 196 | 00275B13B4184ECC98AF0038 /* RobotoCondensed-LightItalic.ttf */, 197 | 0425FBF3B59D4D16A22DFA67 /* RobotoCondensed-Regular.ttf */, 198 | ); 199 | name = Resources; 200 | path = ""; 201 | sourceTree = ""; 202 | }; 203 | AF2023820AA7C9262FC666DE /* Pods */ = { 204 | isa = PBXGroup; 205 | children = ( 206 | 4269E48D38402DD6D67595F6 /* Pods-OnlineLearningApp.debug.xcconfig */, 207 | FF57E5791648138699B4F441 /* Pods-OnlineLearningApp.release.xcconfig */, 208 | 083D119A768F2E00B2C05F78 /* Pods-OnlineLearningApp-OnlineLearningAppTests.debug.xcconfig */, 209 | 5B42060EFED6B4FDB0879979 /* Pods-OnlineLearningApp-OnlineLearningAppTests.release.xcconfig */, 210 | ); 211 | name = Pods; 212 | path = Pods; 213 | sourceTree = ""; 214 | }; 215 | /* End PBXGroup section */ 216 | 217 | /* Begin PBXNativeTarget section */ 218 | 00E356ED1AD99517003FC87E /* OnlineLearningAppTests */ = { 219 | isa = PBXNativeTarget; 220 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "OnlineLearningAppTests" */; 221 | buildPhases = ( 222 | 9FCD43420F07B5B1A2C4FCC9 /* [CP] Check Pods Manifest.lock */, 223 | 00E356EA1AD99517003FC87E /* Sources */, 224 | 00E356EB1AD99517003FC87E /* Frameworks */, 225 | 00E356EC1AD99517003FC87E /* Resources */, 226 | E3AFE22EEE9E7A80623C1389 /* [CP] Embed Pods Frameworks */, 227 | FA7BAA4B112F192F76446951 /* [CP] Copy Pods Resources */, 228 | ); 229 | buildRules = ( 230 | ); 231 | dependencies = ( 232 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 233 | ); 234 | name = OnlineLearningAppTests; 235 | productName = OnlineLearningAppTests; 236 | productReference = 00E356EE1AD99517003FC87E /* OnlineLearningAppTests.xctest */; 237 | productType = "com.apple.product-type.bundle.unit-test"; 238 | }; 239 | 13B07F861A680F5B00A75B9A /* OnlineLearningApp */ = { 240 | isa = PBXNativeTarget; 241 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "OnlineLearningApp" */; 242 | buildPhases = ( 243 | 71C6EB1833BB3B12DFCE0CE7 /* [CP] Check Pods Manifest.lock */, 244 | FD10A7F022414F080027D42C /* Start Packager */, 245 | 13B07F871A680F5B00A75B9A /* Sources */, 246 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 247 | 13B07F8E1A680F5B00A75B9A /* Resources */, 248 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 249 | 197A279CDB00F116F6FB1320 /* [CP] Embed Pods Frameworks */, 250 | 2DD635E71876040C5C367A22 /* [CP] Copy Pods Resources */, 251 | ); 252 | buildRules = ( 253 | ); 254 | dependencies = ( 255 | ); 256 | name = OnlineLearningApp; 257 | productName = OnlineLearningApp; 258 | productReference = 13B07F961A680F5B00A75B9A /* OnlineLearningApp.app */; 259 | productType = "com.apple.product-type.application"; 260 | }; 261 | /* End PBXNativeTarget section */ 262 | 263 | /* Begin PBXProject section */ 264 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 265 | isa = PBXProject; 266 | attributes = { 267 | LastUpgradeCheck = 1210; 268 | TargetAttributes = { 269 | 00E356ED1AD99517003FC87E = { 270 | CreatedOnToolsVersion = 6.2; 271 | TestTargetID = 13B07F861A680F5B00A75B9A; 272 | }; 273 | 13B07F861A680F5B00A75B9A = { 274 | LastSwiftMigration = 1120; 275 | }; 276 | }; 277 | }; 278 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "OnlineLearningApp" */; 279 | compatibilityVersion = "Xcode 12.0"; 280 | developmentRegion = en; 281 | hasScannedForEncodings = 0; 282 | knownRegions = ( 283 | en, 284 | Base, 285 | ); 286 | mainGroup = 83CBB9F61A601CBA00E9B192; 287 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 288 | projectDirPath = ""; 289 | projectRoot = ""; 290 | targets = ( 291 | 13B07F861A680F5B00A75B9A /* OnlineLearningApp */, 292 | 00E356ED1AD99517003FC87E /* OnlineLearningAppTests */, 293 | ); 294 | }; 295 | /* End PBXProject section */ 296 | 297 | /* Begin PBXResourcesBuildPhase section */ 298 | 00E356EC1AD99517003FC87E /* Resources */ = { 299 | isa = PBXResourcesBuildPhase; 300 | buildActionMask = 2147483647; 301 | files = ( 302 | ); 303 | runOnlyForDeploymentPostprocessing = 0; 304 | }; 305 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 306 | isa = PBXResourcesBuildPhase; 307 | buildActionMask = 2147483647; 308 | files = ( 309 | 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */, 310 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 311 | AF3E4B38C80144728744893B /* Roboto-Black.ttf in Resources */, 312 | 19C378DBE15440FC8A12EB83 /* Roboto-BlackItalic.ttf in Resources */, 313 | CDCD7BA42C924259BD3FF56B /* Roboto-Bold.ttf in Resources */, 314 | B08B1F1EDCED480FB29ECB04 /* Roboto-BoldItalic.ttf in Resources */, 315 | D80067528E644AA687387C7A /* Roboto-Italic.ttf in Resources */, 316 | 4E6EC50413A741C8A250B2D0 /* Roboto-Light.ttf in Resources */, 317 | 414F6FAA9E1E4B43ACDD0386 /* Roboto-LightItalic.ttf in Resources */, 318 | 74C0BCB37EFC44AB9FA28671 /* Roboto-Medium.ttf in Resources */, 319 | A49A84131B734931AC6F6227 /* Roboto-MediumItalic.ttf in Resources */, 320 | 863AF4E38C354DD49C16401D /* Roboto-Regular.ttf in Resources */, 321 | 80EC21C5BD564FA7895A9D6B /* Roboto-Thin.ttf in Resources */, 322 | FB992BEAA9CB44D49E00E5FA /* Roboto-ThinItalic.ttf in Resources */, 323 | 2AAFDC7FC8AE403AA587745C /* RobotoCondensed-Bold.ttf in Resources */, 324 | 1EE07C1BDB3D498685367FCD /* RobotoCondensed-BoldItalic.ttf in Resources */, 325 | 562F108F697D4CE6A29DA702 /* RobotoCondensed-Italic.ttf in Resources */, 326 | BF7605769D104F968C103B63 /* RobotoCondensed-Light.ttf in Resources */, 327 | 672386FFC75F4B3FB5248D4B /* RobotoCondensed-LightItalic.ttf in Resources */, 328 | A242892F180F4C4390955603 /* RobotoCondensed-Regular.ttf in Resources */, 329 | ); 330 | runOnlyForDeploymentPostprocessing = 0; 331 | }; 332 | /* End PBXResourcesBuildPhase section */ 333 | 334 | /* Begin PBXShellScriptBuildPhase section */ 335 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 336 | isa = PBXShellScriptBuildPhase; 337 | buildActionMask = 2147483647; 338 | files = ( 339 | ); 340 | inputPaths = ( 341 | ); 342 | name = "Bundle React Native code and images"; 343 | outputPaths = ( 344 | ); 345 | runOnlyForDeploymentPostprocessing = 0; 346 | shellPath = /bin/sh; 347 | shellScript = "set -e\n\nexport NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n"; 348 | }; 349 | 197A279CDB00F116F6FB1320 /* [CP] Embed Pods Frameworks */ = { 350 | isa = PBXShellScriptBuildPhase; 351 | buildActionMask = 2147483647; 352 | files = ( 353 | ); 354 | inputFileListPaths = ( 355 | "${PODS_ROOT}/Target Support Files/Pods-OnlineLearningApp/Pods-OnlineLearningApp-frameworks-${CONFIGURATION}-input-files.xcfilelist", 356 | ); 357 | name = "[CP] Embed Pods Frameworks"; 358 | outputFileListPaths = ( 359 | "${PODS_ROOT}/Target Support Files/Pods-OnlineLearningApp/Pods-OnlineLearningApp-frameworks-${CONFIGURATION}-output-files.xcfilelist", 360 | ); 361 | runOnlyForDeploymentPostprocessing = 0; 362 | shellPath = /bin/sh; 363 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-OnlineLearningApp/Pods-OnlineLearningApp-frameworks.sh\"\n"; 364 | showEnvVarsInLog = 0; 365 | }; 366 | 2DD635E71876040C5C367A22 /* [CP] Copy Pods Resources */ = { 367 | isa = PBXShellScriptBuildPhase; 368 | buildActionMask = 2147483647; 369 | files = ( 370 | ); 371 | inputFileListPaths = ( 372 | "${PODS_ROOT}/Target Support Files/Pods-OnlineLearningApp/Pods-OnlineLearningApp-resources-${CONFIGURATION}-input-files.xcfilelist", 373 | ); 374 | name = "[CP] Copy Pods Resources"; 375 | outputFileListPaths = ( 376 | "${PODS_ROOT}/Target Support Files/Pods-OnlineLearningApp/Pods-OnlineLearningApp-resources-${CONFIGURATION}-output-files.xcfilelist", 377 | ); 378 | runOnlyForDeploymentPostprocessing = 0; 379 | shellPath = /bin/sh; 380 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-OnlineLearningApp/Pods-OnlineLearningApp-resources.sh\"\n"; 381 | showEnvVarsInLog = 0; 382 | }; 383 | 71C6EB1833BB3B12DFCE0CE7 /* [CP] Check Pods Manifest.lock */ = { 384 | isa = PBXShellScriptBuildPhase; 385 | buildActionMask = 2147483647; 386 | files = ( 387 | ); 388 | inputFileListPaths = ( 389 | ); 390 | inputPaths = ( 391 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 392 | "${PODS_ROOT}/Manifest.lock", 393 | ); 394 | name = "[CP] Check Pods Manifest.lock"; 395 | outputFileListPaths = ( 396 | ); 397 | outputPaths = ( 398 | "$(DERIVED_FILE_DIR)/Pods-OnlineLearningApp-checkManifestLockResult.txt", 399 | ); 400 | runOnlyForDeploymentPostprocessing = 0; 401 | shellPath = /bin/sh; 402 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 403 | showEnvVarsInLog = 0; 404 | }; 405 | 9FCD43420F07B5B1A2C4FCC9 /* [CP] Check Pods Manifest.lock */ = { 406 | isa = PBXShellScriptBuildPhase; 407 | buildActionMask = 2147483647; 408 | files = ( 409 | ); 410 | inputFileListPaths = ( 411 | ); 412 | inputPaths = ( 413 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 414 | "${PODS_ROOT}/Manifest.lock", 415 | ); 416 | name = "[CP] Check Pods Manifest.lock"; 417 | outputFileListPaths = ( 418 | ); 419 | outputPaths = ( 420 | "$(DERIVED_FILE_DIR)/Pods-OnlineLearningApp-OnlineLearningAppTests-checkManifestLockResult.txt", 421 | ); 422 | runOnlyForDeploymentPostprocessing = 0; 423 | shellPath = /bin/sh; 424 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 425 | showEnvVarsInLog = 0; 426 | }; 427 | E3AFE22EEE9E7A80623C1389 /* [CP] Embed Pods Frameworks */ = { 428 | isa = PBXShellScriptBuildPhase; 429 | buildActionMask = 2147483647; 430 | files = ( 431 | ); 432 | inputFileListPaths = ( 433 | "${PODS_ROOT}/Target Support Files/Pods-OnlineLearningApp-OnlineLearningAppTests/Pods-OnlineLearningApp-OnlineLearningAppTests-frameworks-${CONFIGURATION}-input-files.xcfilelist", 434 | ); 435 | name = "[CP] Embed Pods Frameworks"; 436 | outputFileListPaths = ( 437 | "${PODS_ROOT}/Target Support Files/Pods-OnlineLearningApp-OnlineLearningAppTests/Pods-OnlineLearningApp-OnlineLearningAppTests-frameworks-${CONFIGURATION}-output-files.xcfilelist", 438 | ); 439 | runOnlyForDeploymentPostprocessing = 0; 440 | shellPath = /bin/sh; 441 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-OnlineLearningApp-OnlineLearningAppTests/Pods-OnlineLearningApp-OnlineLearningAppTests-frameworks.sh\"\n"; 442 | showEnvVarsInLog = 0; 443 | }; 444 | FA7BAA4B112F192F76446951 /* [CP] Copy Pods Resources */ = { 445 | isa = PBXShellScriptBuildPhase; 446 | buildActionMask = 2147483647; 447 | files = ( 448 | ); 449 | inputFileListPaths = ( 450 | "${PODS_ROOT}/Target Support Files/Pods-OnlineLearningApp-OnlineLearningAppTests/Pods-OnlineLearningApp-OnlineLearningAppTests-resources-${CONFIGURATION}-input-files.xcfilelist", 451 | ); 452 | name = "[CP] Copy Pods Resources"; 453 | outputFileListPaths = ( 454 | "${PODS_ROOT}/Target Support Files/Pods-OnlineLearningApp-OnlineLearningAppTests/Pods-OnlineLearningApp-OnlineLearningAppTests-resources-${CONFIGURATION}-output-files.xcfilelist", 455 | ); 456 | runOnlyForDeploymentPostprocessing = 0; 457 | shellPath = /bin/sh; 458 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-OnlineLearningApp-OnlineLearningAppTests/Pods-OnlineLearningApp-OnlineLearningAppTests-resources.sh\"\n"; 459 | showEnvVarsInLog = 0; 460 | }; 461 | FD10A7F022414F080027D42C /* Start Packager */ = { 462 | isa = PBXShellScriptBuildPhase; 463 | buildActionMask = 2147483647; 464 | files = ( 465 | ); 466 | inputFileListPaths = ( 467 | ); 468 | inputPaths = ( 469 | ); 470 | name = "Start Packager"; 471 | outputFileListPaths = ( 472 | ); 473 | outputPaths = ( 474 | ); 475 | runOnlyForDeploymentPostprocessing = 0; 476 | shellPath = /bin/sh; 477 | shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native/scripts/.packager.env\"\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open \"$SRCROOT/../node_modules/react-native/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n"; 478 | showEnvVarsInLog = 0; 479 | }; 480 | /* End PBXShellScriptBuildPhase section */ 481 | 482 | /* Begin PBXSourcesBuildPhase section */ 483 | 00E356EA1AD99517003FC87E /* Sources */ = { 484 | isa = PBXSourcesBuildPhase; 485 | buildActionMask = 2147483647; 486 | files = ( 487 | 00E356F31AD99517003FC87E /* OnlineLearningAppTests.m in Sources */, 488 | ); 489 | runOnlyForDeploymentPostprocessing = 0; 490 | }; 491 | 13B07F871A680F5B00A75B9A /* Sources */ = { 492 | isa = PBXSourcesBuildPhase; 493 | buildActionMask = 2147483647; 494 | files = ( 495 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 496 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 497 | ); 498 | runOnlyForDeploymentPostprocessing = 0; 499 | }; 500 | /* End PBXSourcesBuildPhase section */ 501 | 502 | /* Begin PBXTargetDependency section */ 503 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 504 | isa = PBXTargetDependency; 505 | target = 13B07F861A680F5B00A75B9A /* OnlineLearningApp */; 506 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 507 | }; 508 | /* End PBXTargetDependency section */ 509 | 510 | /* Begin XCBuildConfiguration section */ 511 | 00E356F61AD99517003FC87E /* Debug */ = { 512 | isa = XCBuildConfiguration; 513 | baseConfigurationReference = 083D119A768F2E00B2C05F78 /* Pods-OnlineLearningApp-OnlineLearningAppTests.debug.xcconfig */; 514 | buildSettings = { 515 | BUNDLE_LOADER = "$(TEST_HOST)"; 516 | GCC_PREPROCESSOR_DEFINITIONS = ( 517 | "DEBUG=1", 518 | "$(inherited)", 519 | ); 520 | INFOPLIST_FILE = OnlineLearningAppTests/Info.plist; 521 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 522 | LD_RUNPATH_SEARCH_PATHS = ( 523 | "$(inherited)", 524 | "@executable_path/Frameworks", 525 | "@loader_path/Frameworks", 526 | ); 527 | OTHER_LDFLAGS = ( 528 | "-ObjC", 529 | "-lc++", 530 | "$(inherited)", 531 | ); 532 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 533 | PRODUCT_NAME = "$(TARGET_NAME)"; 534 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/OnlineLearningApp.app/OnlineLearningApp"; 535 | }; 536 | name = Debug; 537 | }; 538 | 00E356F71AD99517003FC87E /* Release */ = { 539 | isa = XCBuildConfiguration; 540 | baseConfigurationReference = 5B42060EFED6B4FDB0879979 /* Pods-OnlineLearningApp-OnlineLearningAppTests.release.xcconfig */; 541 | buildSettings = { 542 | BUNDLE_LOADER = "$(TEST_HOST)"; 543 | COPY_PHASE_STRIP = NO; 544 | INFOPLIST_FILE = OnlineLearningAppTests/Info.plist; 545 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 546 | LD_RUNPATH_SEARCH_PATHS = ( 547 | "$(inherited)", 548 | "@executable_path/Frameworks", 549 | "@loader_path/Frameworks", 550 | ); 551 | OTHER_LDFLAGS = ( 552 | "-ObjC", 553 | "-lc++", 554 | "$(inherited)", 555 | ); 556 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 557 | PRODUCT_NAME = "$(TARGET_NAME)"; 558 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/OnlineLearningApp.app/OnlineLearningApp"; 559 | }; 560 | name = Release; 561 | }; 562 | 13B07F941A680F5B00A75B9A /* Debug */ = { 563 | isa = XCBuildConfiguration; 564 | baseConfigurationReference = 4269E48D38402DD6D67595F6 /* Pods-OnlineLearningApp.debug.xcconfig */; 565 | buildSettings = { 566 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 567 | CLANG_ENABLE_MODULES = YES; 568 | CURRENT_PROJECT_VERSION = 1; 569 | ENABLE_BITCODE = NO; 570 | INFOPLIST_FILE = OnlineLearningApp/Info.plist; 571 | LD_RUNPATH_SEARCH_PATHS = ( 572 | "$(inherited)", 573 | "@executable_path/Frameworks", 574 | ); 575 | OTHER_LDFLAGS = ( 576 | "$(inherited)", 577 | "-ObjC", 578 | "-lc++", 579 | ); 580 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 581 | PRODUCT_NAME = OnlineLearningApp; 582 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 583 | SWIFT_VERSION = 5.0; 584 | VERSIONING_SYSTEM = "apple-generic"; 585 | }; 586 | name = Debug; 587 | }; 588 | 13B07F951A680F5B00A75B9A /* Release */ = { 589 | isa = XCBuildConfiguration; 590 | baseConfigurationReference = FF57E5791648138699B4F441 /* Pods-OnlineLearningApp.release.xcconfig */; 591 | buildSettings = { 592 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 593 | CLANG_ENABLE_MODULES = YES; 594 | CURRENT_PROJECT_VERSION = 1; 595 | INFOPLIST_FILE = OnlineLearningApp/Info.plist; 596 | LD_RUNPATH_SEARCH_PATHS = ( 597 | "$(inherited)", 598 | "@executable_path/Frameworks", 599 | ); 600 | OTHER_LDFLAGS = ( 601 | "$(inherited)", 602 | "-ObjC", 603 | "-lc++", 604 | ); 605 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 606 | PRODUCT_NAME = OnlineLearningApp; 607 | SWIFT_VERSION = 5.0; 608 | VERSIONING_SYSTEM = "apple-generic"; 609 | }; 610 | name = Release; 611 | }; 612 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 613 | isa = XCBuildConfiguration; 614 | buildSettings = { 615 | ALWAYS_SEARCH_USER_PATHS = NO; 616 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 617 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 618 | CLANG_CXX_LIBRARY = "libc++"; 619 | CLANG_ENABLE_MODULES = YES; 620 | CLANG_ENABLE_OBJC_ARC = YES; 621 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 622 | CLANG_WARN_BOOL_CONVERSION = YES; 623 | CLANG_WARN_COMMA = YES; 624 | CLANG_WARN_CONSTANT_CONVERSION = YES; 625 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 626 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 627 | CLANG_WARN_EMPTY_BODY = YES; 628 | CLANG_WARN_ENUM_CONVERSION = YES; 629 | CLANG_WARN_INFINITE_RECURSION = YES; 630 | CLANG_WARN_INT_CONVERSION = YES; 631 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 632 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 633 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 634 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 635 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 636 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 637 | CLANG_WARN_STRICT_PROTOTYPES = YES; 638 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 639 | CLANG_WARN_UNREACHABLE_CODE = YES; 640 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 641 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 642 | COPY_PHASE_STRIP = NO; 643 | ENABLE_STRICT_OBJC_MSGSEND = YES; 644 | ENABLE_TESTABILITY = YES; 645 | "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 "; 646 | GCC_C_LANGUAGE_STANDARD = gnu99; 647 | GCC_DYNAMIC_NO_PIC = NO; 648 | GCC_NO_COMMON_BLOCKS = YES; 649 | GCC_OPTIMIZATION_LEVEL = 0; 650 | GCC_PREPROCESSOR_DEFINITIONS = ( 651 | "DEBUG=1", 652 | "$(inherited)", 653 | ); 654 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 655 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 656 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 657 | GCC_WARN_UNDECLARED_SELECTOR = YES; 658 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 659 | GCC_WARN_UNUSED_FUNCTION = YES; 660 | GCC_WARN_UNUSED_VARIABLE = YES; 661 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 662 | LD_RUNPATH_SEARCH_PATHS = ( 663 | /usr/lib/swift, 664 | "$(inherited)", 665 | ); 666 | LIBRARY_SEARCH_PATHS = ( 667 | "\"$(SDKROOT)/usr/lib/swift\"", 668 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"", 669 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"", 670 | "\"$(inherited)\"", 671 | ); 672 | MTL_ENABLE_DEBUG_INFO = YES; 673 | ONLY_ACTIVE_ARCH = YES; 674 | SDKROOT = iphoneos; 675 | }; 676 | name = Debug; 677 | }; 678 | 83CBBA211A601CBA00E9B192 /* Release */ = { 679 | isa = XCBuildConfiguration; 680 | buildSettings = { 681 | ALWAYS_SEARCH_USER_PATHS = NO; 682 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 683 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 684 | CLANG_CXX_LIBRARY = "libc++"; 685 | CLANG_ENABLE_MODULES = YES; 686 | CLANG_ENABLE_OBJC_ARC = YES; 687 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 688 | CLANG_WARN_BOOL_CONVERSION = YES; 689 | CLANG_WARN_COMMA = YES; 690 | CLANG_WARN_CONSTANT_CONVERSION = YES; 691 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 692 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 693 | CLANG_WARN_EMPTY_BODY = YES; 694 | CLANG_WARN_ENUM_CONVERSION = YES; 695 | CLANG_WARN_INFINITE_RECURSION = YES; 696 | CLANG_WARN_INT_CONVERSION = YES; 697 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 698 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 699 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 700 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 701 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 702 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 703 | CLANG_WARN_STRICT_PROTOTYPES = YES; 704 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 705 | CLANG_WARN_UNREACHABLE_CODE = YES; 706 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 707 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 708 | COPY_PHASE_STRIP = YES; 709 | ENABLE_NS_ASSERTIONS = NO; 710 | ENABLE_STRICT_OBJC_MSGSEND = YES; 711 | "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 "; 712 | GCC_C_LANGUAGE_STANDARD = gnu99; 713 | GCC_NO_COMMON_BLOCKS = YES; 714 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 715 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 716 | GCC_WARN_UNDECLARED_SELECTOR = YES; 717 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 718 | GCC_WARN_UNUSED_FUNCTION = YES; 719 | GCC_WARN_UNUSED_VARIABLE = YES; 720 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 721 | LD_RUNPATH_SEARCH_PATHS = ( 722 | /usr/lib/swift, 723 | "$(inherited)", 724 | ); 725 | LIBRARY_SEARCH_PATHS = ( 726 | "\"$(SDKROOT)/usr/lib/swift\"", 727 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"", 728 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"", 729 | "\"$(inherited)\"", 730 | ); 731 | MTL_ENABLE_DEBUG_INFO = NO; 732 | SDKROOT = iphoneos; 733 | VALIDATE_PRODUCT = YES; 734 | }; 735 | name = Release; 736 | }; 737 | /* End XCBuildConfiguration section */ 738 | 739 | /* Begin XCConfigurationList section */ 740 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "OnlineLearningAppTests" */ = { 741 | isa = XCConfigurationList; 742 | buildConfigurations = ( 743 | 00E356F61AD99517003FC87E /* Debug */, 744 | 00E356F71AD99517003FC87E /* Release */, 745 | ); 746 | defaultConfigurationIsVisible = 0; 747 | defaultConfigurationName = Release; 748 | }; 749 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "OnlineLearningApp" */ = { 750 | isa = XCConfigurationList; 751 | buildConfigurations = ( 752 | 13B07F941A680F5B00A75B9A /* Debug */, 753 | 13B07F951A680F5B00A75B9A /* Release */, 754 | ); 755 | defaultConfigurationIsVisible = 0; 756 | defaultConfigurationName = Release; 757 | }; 758 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "OnlineLearningApp" */ = { 759 | isa = XCConfigurationList; 760 | buildConfigurations = ( 761 | 83CBBA201A601CBA00E9B192 /* Debug */, 762 | 83CBBA211A601CBA00E9B192 /* Release */, 763 | ); 764 | defaultConfigurationIsVisible = 0; 765 | defaultConfigurationName = Release; 766 | }; 767 | /* End XCConfigurationList section */ 768 | }; 769 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 770 | } 771 | -------------------------------------------------------------------------------- /ios/OnlineLearningApp.xcodeproj/xcshareddata/xcschemes/OnlineLearningApp.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 33 | 39 | 40 | 41 | 42 | 43 | 53 | 55 | 61 | 62 | 63 | 64 | 70 | 72 | 78 | 79 | 80 | 81 | 83 | 84 | 87 | 88 | 89 | -------------------------------------------------------------------------------- /ios/OnlineLearningApp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ios/OnlineLearningApp/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : UIResponder 5 | 6 | @property (nonatomic, strong) UIWindow *window; 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /ios/OnlineLearningApp/AppDelegate.m: -------------------------------------------------------------------------------- 1 | #import "AppDelegate.h" 2 | 3 | #import 4 | #import 5 | #import 6 | 7 | #ifdef FB_SONARKIT_ENABLED 8 | #import 9 | #import 10 | #import 11 | #import 12 | #import 13 | #import 14 | 15 | static void InitializeFlipper(UIApplication *application) { 16 | FlipperClient *client = [FlipperClient sharedClient]; 17 | SKDescriptorMapper *layoutDescriptorMapper = [[SKDescriptorMapper alloc] initWithDefaults]; 18 | [client addPlugin:[[FlipperKitLayoutPlugin alloc] initWithRootNode:application withDescriptorMapper:layoutDescriptorMapper]]; 19 | [client addPlugin:[[FKUserDefaultsPlugin alloc] initWithSuiteName:nil]]; 20 | [client addPlugin:[FlipperKitReactPlugin new]]; 21 | [client addPlugin:[[FlipperKitNetworkPlugin alloc] initWithNetworkAdapter:[SKIOSNetworkAdapter new]]]; 22 | [client start]; 23 | } 24 | #endif 25 | 26 | @implementation AppDelegate 27 | 28 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 29 | { 30 | #ifdef FB_SONARKIT_ENABLED 31 | InitializeFlipper(application); 32 | #endif 33 | 34 | RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions]; 35 | RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge 36 | moduleName:@"OnlineLearningApp" 37 | initialProperties:nil]; 38 | 39 | if (@available(iOS 13.0, *)) { 40 | rootView.backgroundColor = [UIColor systemBackgroundColor]; 41 | } else { 42 | rootView.backgroundColor = [UIColor whiteColor]; 43 | } 44 | 45 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 46 | UIViewController *rootViewController = [UIViewController new]; 47 | rootViewController.view = rootView; 48 | self.window.rootViewController = rootViewController; 49 | [self.window makeKeyAndVisible]; 50 | return YES; 51 | } 52 | 53 | - (NSURL *)sourceURLForBridge:(RCTBridge *)bridge 54 | { 55 | #if DEBUG 56 | return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil]; 57 | #else 58 | return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"]; 59 | #endif 60 | } 61 | 62 | @end 63 | -------------------------------------------------------------------------------- /ios/OnlineLearningApp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } -------------------------------------------------------------------------------- /ios/OnlineLearningApp/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ios/OnlineLearningApp/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | OnlineLearningApp 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1 25 | LSRequiresIPhoneOS 26 | 27 | NSAppTransportSecurity 28 | 29 | NSExceptionDomains 30 | 31 | localhost 32 | 33 | NSExceptionAllowsInsecureHTTPLoads 34 | 35 | 36 | 37 | 38 | NSLocationWhenInUseUsageDescription 39 | 40 | UILaunchStoryboardName 41 | LaunchScreen 42 | UIRequiredDeviceCapabilities 43 | 44 | armv7 45 | 46 | UISupportedInterfaceOrientations 47 | 48 | UIInterfaceOrientationPortrait 49 | UIInterfaceOrientationLandscapeLeft 50 | UIInterfaceOrientationLandscapeRight 51 | 52 | UIViewControllerBasedStatusBarAppearance 53 | 54 | UIAppFonts 55 | 56 | Roboto-Black.ttf 57 | Roboto-BlackItalic.ttf 58 | Roboto-Bold.ttf 59 | Roboto-BoldItalic.ttf 60 | Roboto-Italic.ttf 61 | Roboto-Light.ttf 62 | Roboto-LightItalic.ttf 63 | Roboto-Medium.ttf 64 | Roboto-MediumItalic.ttf 65 | Roboto-Regular.ttf 66 | Roboto-Thin.ttf 67 | Roboto-ThinItalic.ttf 68 | RobotoCondensed-Bold.ttf 69 | RobotoCondensed-BoldItalic.ttf 70 | RobotoCondensed-Italic.ttf 71 | RobotoCondensed-Light.ttf 72 | RobotoCondensed-LightItalic.ttf 73 | RobotoCondensed-Regular.ttf 74 | 75 | 76 | 77 | -------------------------------------------------------------------------------- /ios/OnlineLearningApp/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 24 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /ios/OnlineLearningApp/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #import "AppDelegate.h" 4 | 5 | int main(int argc, char * argv[]) { 6 | @autoreleasepool { 7 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /ios/OnlineLearningAppTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /ios/OnlineLearningAppTests/OnlineLearningAppTests.m: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | #import 5 | #import 6 | 7 | #define TIMEOUT_SECONDS 600 8 | #define TEXT_TO_LOOK_FOR @"Welcome to React" 9 | 10 | @interface OnlineLearningAppTests : XCTestCase 11 | 12 | @end 13 | 14 | @implementation OnlineLearningAppTests 15 | 16 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test 17 | { 18 | if (test(view)) { 19 | return YES; 20 | } 21 | for (UIView *subview in [view subviews]) { 22 | if ([self findSubviewInView:subview matching:test]) { 23 | return YES; 24 | } 25 | } 26 | return NO; 27 | } 28 | 29 | - (void)testRendersWelcomeScreen 30 | { 31 | UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController]; 32 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS]; 33 | BOOL foundElement = NO; 34 | 35 | __block NSString *redboxError = nil; 36 | #ifdef DEBUG 37 | RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) { 38 | if (level >= RCTLogLevelError) { 39 | redboxError = message; 40 | } 41 | }); 42 | #endif 43 | 44 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) { 45 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 46 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 47 | 48 | foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) { 49 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) { 50 | return YES; 51 | } 52 | return NO; 53 | }]; 54 | } 55 | 56 | #ifdef DEBUG 57 | RCTSetLogFunction(RCTDefaultLogFunction); 58 | #endif 59 | 60 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError); 61 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS); 62 | } 63 | 64 | 65 | @end 66 | -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- 1 | require_relative '../node_modules/react-native/scripts/react_native_pods' 2 | require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' 3 | 4 | platform :ios, '11.0' 5 | 6 | target 'OnlineLearningApp' do 7 | config = use_native_modules! 8 | 9 | use_react_native!( 10 | :path => config[:reactNativePath], 11 | # to enable hermes on iOS, change `false` to `true` and then install pods 12 | :hermes_enabled => false 13 | ) 14 | 15 | target 'OnlineLearningAppTests' do 16 | inherit! :complete 17 | # Pods for testing 18 | end 19 | 20 | # Enables Flipper. 21 | # 22 | # Note that if you have use_frameworks! enabled, Flipper will not work and 23 | # you should disable the next line. 24 | use_flipper!() 25 | 26 | post_install do |installer| 27 | react_native_post_install(installer) 28 | __apply_Xcode_12_5_M1_post_install_workaround(installer) 29 | end 30 | end 31 | -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - boost (1.76.0) 3 | - CocoaAsyncSocket (7.6.5) 4 | - DoubleConversion (1.1.6) 5 | - FBLazyVector (0.66.1) 6 | - FBReactNativeSpec (0.66.1): 7 | - RCT-Folly (= 2021.06.28.00-v2) 8 | - RCTRequired (= 0.66.1) 9 | - RCTTypeSafety (= 0.66.1) 10 | - React-Core (= 0.66.1) 11 | - React-jsi (= 0.66.1) 12 | - ReactCommon/turbomodule/core (= 0.66.1) 13 | - Flipper (0.99.0): 14 | - Flipper-Folly (~> 2.6) 15 | - Flipper-RSocket (~> 1.4) 16 | - Flipper-Boost-iOSX (1.76.0.1.11) 17 | - Flipper-DoubleConversion (3.1.7) 18 | - Flipper-Fmt (7.1.7) 19 | - Flipper-Folly (2.6.7): 20 | - Flipper-Boost-iOSX 21 | - Flipper-DoubleConversion 22 | - Flipper-Fmt (= 7.1.7) 23 | - Flipper-Glog 24 | - libevent (~> 2.1.12) 25 | - OpenSSL-Universal (= 1.1.180) 26 | - Flipper-Glog (0.3.6) 27 | - Flipper-PeerTalk (0.0.4) 28 | - Flipper-RSocket (1.4.3): 29 | - Flipper-Folly (~> 2.6) 30 | - FlipperKit (0.99.0): 31 | - FlipperKit/Core (= 0.99.0) 32 | - FlipperKit/Core (0.99.0): 33 | - Flipper (~> 0.99.0) 34 | - FlipperKit/CppBridge 35 | - FlipperKit/FBCxxFollyDynamicConvert 36 | - FlipperKit/FBDefines 37 | - FlipperKit/FKPortForwarding 38 | - FlipperKit/CppBridge (0.99.0): 39 | - Flipper (~> 0.99.0) 40 | - FlipperKit/FBCxxFollyDynamicConvert (0.99.0): 41 | - Flipper-Folly (~> 2.6) 42 | - FlipperKit/FBDefines (0.99.0) 43 | - FlipperKit/FKPortForwarding (0.99.0): 44 | - CocoaAsyncSocket (~> 7.6) 45 | - Flipper-PeerTalk (~> 0.0.4) 46 | - FlipperKit/FlipperKitHighlightOverlay (0.99.0) 47 | - FlipperKit/FlipperKitLayoutHelpers (0.99.0): 48 | - FlipperKit/Core 49 | - FlipperKit/FlipperKitHighlightOverlay 50 | - FlipperKit/FlipperKitLayoutTextSearchable 51 | - FlipperKit/FlipperKitLayoutIOSDescriptors (0.99.0): 52 | - FlipperKit/Core 53 | - FlipperKit/FlipperKitHighlightOverlay 54 | - FlipperKit/FlipperKitLayoutHelpers 55 | - YogaKit (~> 1.18) 56 | - FlipperKit/FlipperKitLayoutPlugin (0.99.0): 57 | - FlipperKit/Core 58 | - FlipperKit/FlipperKitHighlightOverlay 59 | - FlipperKit/FlipperKitLayoutHelpers 60 | - FlipperKit/FlipperKitLayoutIOSDescriptors 61 | - FlipperKit/FlipperKitLayoutTextSearchable 62 | - YogaKit (~> 1.18) 63 | - FlipperKit/FlipperKitLayoutTextSearchable (0.99.0) 64 | - FlipperKit/FlipperKitNetworkPlugin (0.99.0): 65 | - FlipperKit/Core 66 | - FlipperKit/FlipperKitReactPlugin (0.99.0): 67 | - FlipperKit/Core 68 | - FlipperKit/FlipperKitUserDefaultsPlugin (0.99.0): 69 | - FlipperKit/Core 70 | - FlipperKit/SKIOSNetworkPlugin (0.99.0): 71 | - FlipperKit/Core 72 | - FlipperKit/FlipperKitNetworkPlugin 73 | - fmt (6.2.1) 74 | - glog (0.3.5) 75 | - libevent (2.1.12) 76 | - OpenSSL-Universal (1.1.180) 77 | - RCT-Folly (2021.06.28.00-v2): 78 | - boost 79 | - DoubleConversion 80 | - fmt (~> 6.2.1) 81 | - glog 82 | - RCT-Folly/Default (= 2021.06.28.00-v2) 83 | - RCT-Folly/Default (2021.06.28.00-v2): 84 | - boost 85 | - DoubleConversion 86 | - fmt (~> 6.2.1) 87 | - glog 88 | - RCTRequired (0.66.1) 89 | - RCTTypeSafety (0.66.1): 90 | - FBLazyVector (= 0.66.1) 91 | - RCT-Folly (= 2021.06.28.00-v2) 92 | - RCTRequired (= 0.66.1) 93 | - React-Core (= 0.66.1) 94 | - React (0.66.1): 95 | - React-Core (= 0.66.1) 96 | - React-Core/DevSupport (= 0.66.1) 97 | - React-Core/RCTWebSocket (= 0.66.1) 98 | - React-RCTActionSheet (= 0.66.1) 99 | - React-RCTAnimation (= 0.66.1) 100 | - React-RCTBlob (= 0.66.1) 101 | - React-RCTImage (= 0.66.1) 102 | - React-RCTLinking (= 0.66.1) 103 | - React-RCTNetwork (= 0.66.1) 104 | - React-RCTSettings (= 0.66.1) 105 | - React-RCTText (= 0.66.1) 106 | - React-RCTVibration (= 0.66.1) 107 | - React-callinvoker (0.66.1) 108 | - React-Core (0.66.1): 109 | - glog 110 | - RCT-Folly (= 2021.06.28.00-v2) 111 | - React-Core/Default (= 0.66.1) 112 | - React-cxxreact (= 0.66.1) 113 | - React-jsi (= 0.66.1) 114 | - React-jsiexecutor (= 0.66.1) 115 | - React-perflogger (= 0.66.1) 116 | - Yoga 117 | - React-Core/CoreModulesHeaders (0.66.1): 118 | - glog 119 | - RCT-Folly (= 2021.06.28.00-v2) 120 | - React-Core/Default 121 | - React-cxxreact (= 0.66.1) 122 | - React-jsi (= 0.66.1) 123 | - React-jsiexecutor (= 0.66.1) 124 | - React-perflogger (= 0.66.1) 125 | - Yoga 126 | - React-Core/Default (0.66.1): 127 | - glog 128 | - RCT-Folly (= 2021.06.28.00-v2) 129 | - React-cxxreact (= 0.66.1) 130 | - React-jsi (= 0.66.1) 131 | - React-jsiexecutor (= 0.66.1) 132 | - React-perflogger (= 0.66.1) 133 | - Yoga 134 | - React-Core/DevSupport (0.66.1): 135 | - glog 136 | - RCT-Folly (= 2021.06.28.00-v2) 137 | - React-Core/Default (= 0.66.1) 138 | - React-Core/RCTWebSocket (= 0.66.1) 139 | - React-cxxreact (= 0.66.1) 140 | - React-jsi (= 0.66.1) 141 | - React-jsiexecutor (= 0.66.1) 142 | - React-jsinspector (= 0.66.1) 143 | - React-perflogger (= 0.66.1) 144 | - Yoga 145 | - React-Core/RCTActionSheetHeaders (0.66.1): 146 | - glog 147 | - RCT-Folly (= 2021.06.28.00-v2) 148 | - React-Core/Default 149 | - React-cxxreact (= 0.66.1) 150 | - React-jsi (= 0.66.1) 151 | - React-jsiexecutor (= 0.66.1) 152 | - React-perflogger (= 0.66.1) 153 | - Yoga 154 | - React-Core/RCTAnimationHeaders (0.66.1): 155 | - glog 156 | - RCT-Folly (= 2021.06.28.00-v2) 157 | - React-Core/Default 158 | - React-cxxreact (= 0.66.1) 159 | - React-jsi (= 0.66.1) 160 | - React-jsiexecutor (= 0.66.1) 161 | - React-perflogger (= 0.66.1) 162 | - Yoga 163 | - React-Core/RCTBlobHeaders (0.66.1): 164 | - glog 165 | - RCT-Folly (= 2021.06.28.00-v2) 166 | - React-Core/Default 167 | - React-cxxreact (= 0.66.1) 168 | - React-jsi (= 0.66.1) 169 | - React-jsiexecutor (= 0.66.1) 170 | - React-perflogger (= 0.66.1) 171 | - Yoga 172 | - React-Core/RCTImageHeaders (0.66.1): 173 | - glog 174 | - RCT-Folly (= 2021.06.28.00-v2) 175 | - React-Core/Default 176 | - React-cxxreact (= 0.66.1) 177 | - React-jsi (= 0.66.1) 178 | - React-jsiexecutor (= 0.66.1) 179 | - React-perflogger (= 0.66.1) 180 | - Yoga 181 | - React-Core/RCTLinkingHeaders (0.66.1): 182 | - glog 183 | - RCT-Folly (= 2021.06.28.00-v2) 184 | - React-Core/Default 185 | - React-cxxreact (= 0.66.1) 186 | - React-jsi (= 0.66.1) 187 | - React-jsiexecutor (= 0.66.1) 188 | - React-perflogger (= 0.66.1) 189 | - Yoga 190 | - React-Core/RCTNetworkHeaders (0.66.1): 191 | - glog 192 | - RCT-Folly (= 2021.06.28.00-v2) 193 | - React-Core/Default 194 | - React-cxxreact (= 0.66.1) 195 | - React-jsi (= 0.66.1) 196 | - React-jsiexecutor (= 0.66.1) 197 | - React-perflogger (= 0.66.1) 198 | - Yoga 199 | - React-Core/RCTSettingsHeaders (0.66.1): 200 | - glog 201 | - RCT-Folly (= 2021.06.28.00-v2) 202 | - React-Core/Default 203 | - React-cxxreact (= 0.66.1) 204 | - React-jsi (= 0.66.1) 205 | - React-jsiexecutor (= 0.66.1) 206 | - React-perflogger (= 0.66.1) 207 | - Yoga 208 | - React-Core/RCTTextHeaders (0.66.1): 209 | - glog 210 | - RCT-Folly (= 2021.06.28.00-v2) 211 | - React-Core/Default 212 | - React-cxxreact (= 0.66.1) 213 | - React-jsi (= 0.66.1) 214 | - React-jsiexecutor (= 0.66.1) 215 | - React-perflogger (= 0.66.1) 216 | - Yoga 217 | - React-Core/RCTVibrationHeaders (0.66.1): 218 | - glog 219 | - RCT-Folly (= 2021.06.28.00-v2) 220 | - React-Core/Default 221 | - React-cxxreact (= 0.66.1) 222 | - React-jsi (= 0.66.1) 223 | - React-jsiexecutor (= 0.66.1) 224 | - React-perflogger (= 0.66.1) 225 | - Yoga 226 | - React-Core/RCTWebSocket (0.66.1): 227 | - glog 228 | - RCT-Folly (= 2021.06.28.00-v2) 229 | - React-Core/Default (= 0.66.1) 230 | - React-cxxreact (= 0.66.1) 231 | - React-jsi (= 0.66.1) 232 | - React-jsiexecutor (= 0.66.1) 233 | - React-perflogger (= 0.66.1) 234 | - Yoga 235 | - React-CoreModules (0.66.1): 236 | - FBReactNativeSpec (= 0.66.1) 237 | - RCT-Folly (= 2021.06.28.00-v2) 238 | - RCTTypeSafety (= 0.66.1) 239 | - React-Core/CoreModulesHeaders (= 0.66.1) 240 | - React-jsi (= 0.66.1) 241 | - React-RCTImage (= 0.66.1) 242 | - ReactCommon/turbomodule/core (= 0.66.1) 243 | - React-cxxreact (0.66.1): 244 | - boost (= 1.76.0) 245 | - DoubleConversion 246 | - glog 247 | - RCT-Folly (= 2021.06.28.00-v2) 248 | - React-callinvoker (= 0.66.1) 249 | - React-jsi (= 0.66.1) 250 | - React-jsinspector (= 0.66.1) 251 | - React-logger (= 0.66.1) 252 | - React-perflogger (= 0.66.1) 253 | - React-runtimeexecutor (= 0.66.1) 254 | - React-jsi (0.66.1): 255 | - boost (= 1.76.0) 256 | - DoubleConversion 257 | - glog 258 | - RCT-Folly (= 2021.06.28.00-v2) 259 | - React-jsi/Default (= 0.66.1) 260 | - React-jsi/Default (0.66.1): 261 | - boost (= 1.76.0) 262 | - DoubleConversion 263 | - glog 264 | - RCT-Folly (= 2021.06.28.00-v2) 265 | - React-jsiexecutor (0.66.1): 266 | - DoubleConversion 267 | - glog 268 | - RCT-Folly (= 2021.06.28.00-v2) 269 | - React-cxxreact (= 0.66.1) 270 | - React-jsi (= 0.66.1) 271 | - React-perflogger (= 0.66.1) 272 | - React-jsinspector (0.66.1) 273 | - React-logger (0.66.1): 274 | - glog 275 | - react-native-safe-area-context (3.3.2): 276 | - React-Core 277 | - React-perflogger (0.66.1) 278 | - React-RCTActionSheet (0.66.1): 279 | - React-Core/RCTActionSheetHeaders (= 0.66.1) 280 | - React-RCTAnimation (0.66.1): 281 | - FBReactNativeSpec (= 0.66.1) 282 | - RCT-Folly (= 2021.06.28.00-v2) 283 | - RCTTypeSafety (= 0.66.1) 284 | - React-Core/RCTAnimationHeaders (= 0.66.1) 285 | - React-jsi (= 0.66.1) 286 | - ReactCommon/turbomodule/core (= 0.66.1) 287 | - React-RCTBlob (0.66.1): 288 | - FBReactNativeSpec (= 0.66.1) 289 | - RCT-Folly (= 2021.06.28.00-v2) 290 | - React-Core/RCTBlobHeaders (= 0.66.1) 291 | - React-Core/RCTWebSocket (= 0.66.1) 292 | - React-jsi (= 0.66.1) 293 | - React-RCTNetwork (= 0.66.1) 294 | - ReactCommon/turbomodule/core (= 0.66.1) 295 | - React-RCTImage (0.66.1): 296 | - FBReactNativeSpec (= 0.66.1) 297 | - RCT-Folly (= 2021.06.28.00-v2) 298 | - RCTTypeSafety (= 0.66.1) 299 | - React-Core/RCTImageHeaders (= 0.66.1) 300 | - React-jsi (= 0.66.1) 301 | - React-RCTNetwork (= 0.66.1) 302 | - ReactCommon/turbomodule/core (= 0.66.1) 303 | - React-RCTLinking (0.66.1): 304 | - FBReactNativeSpec (= 0.66.1) 305 | - React-Core/RCTLinkingHeaders (= 0.66.1) 306 | - React-jsi (= 0.66.1) 307 | - ReactCommon/turbomodule/core (= 0.66.1) 308 | - React-RCTNetwork (0.66.1): 309 | - FBReactNativeSpec (= 0.66.1) 310 | - RCT-Folly (= 2021.06.28.00-v2) 311 | - RCTTypeSafety (= 0.66.1) 312 | - React-Core/RCTNetworkHeaders (= 0.66.1) 313 | - React-jsi (= 0.66.1) 314 | - ReactCommon/turbomodule/core (= 0.66.1) 315 | - React-RCTSettings (0.66.1): 316 | - FBReactNativeSpec (= 0.66.1) 317 | - RCT-Folly (= 2021.06.28.00-v2) 318 | - RCTTypeSafety (= 0.66.1) 319 | - React-Core/RCTSettingsHeaders (= 0.66.1) 320 | - React-jsi (= 0.66.1) 321 | - ReactCommon/turbomodule/core (= 0.66.1) 322 | - React-RCTText (0.66.1): 323 | - React-Core/RCTTextHeaders (= 0.66.1) 324 | - React-RCTVibration (0.66.1): 325 | - FBReactNativeSpec (= 0.66.1) 326 | - RCT-Folly (= 2021.06.28.00-v2) 327 | - React-Core/RCTVibrationHeaders (= 0.66.1) 328 | - React-jsi (= 0.66.1) 329 | - ReactCommon/turbomodule/core (= 0.66.1) 330 | - React-runtimeexecutor (0.66.1): 331 | - React-jsi (= 0.66.1) 332 | - ReactCommon/turbomodule/core (0.66.1): 333 | - DoubleConversion 334 | - glog 335 | - RCT-Folly (= 2021.06.28.00-v2) 336 | - React-callinvoker (= 0.66.1) 337 | - React-Core (= 0.66.1) 338 | - React-cxxreact (= 0.66.1) 339 | - React-jsi (= 0.66.1) 340 | - React-logger (= 0.66.1) 341 | - React-perflogger (= 0.66.1) 342 | - RNReanimated (2.3.0-beta.2): 343 | - DoubleConversion 344 | - FBLazyVector 345 | - FBReactNativeSpec 346 | - glog 347 | - RCT-Folly 348 | - RCTRequired 349 | - RCTTypeSafety 350 | - React 351 | - React-callinvoker 352 | - React-Core 353 | - React-Core/DevSupport 354 | - React-Core/RCTWebSocket 355 | - React-CoreModules 356 | - React-cxxreact 357 | - React-jsi 358 | - React-jsiexecutor 359 | - React-jsinspector 360 | - React-RCTActionSheet 361 | - React-RCTAnimation 362 | - React-RCTBlob 363 | - React-RCTImage 364 | - React-RCTLinking 365 | - React-RCTNetwork 366 | - React-RCTSettings 367 | - React-RCTText 368 | - React-RCTVibration 369 | - ReactCommon/turbomodule/core 370 | - Yoga 371 | - RNScreens (3.8.0): 372 | - React-Core 373 | - React-RCTImage 374 | - Yoga (1.14.0) 375 | - YogaKit (1.18.1): 376 | - Yoga (~> 1.14) 377 | 378 | DEPENDENCIES: 379 | - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`) 380 | - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`) 381 | - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`) 382 | - FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`) 383 | - Flipper (= 0.99.0) 384 | - Flipper-Boost-iOSX (= 1.76.0.1.11) 385 | - Flipper-DoubleConversion (= 3.1.7) 386 | - Flipper-Fmt (= 7.1.7) 387 | - Flipper-Folly (= 2.6.7) 388 | - Flipper-Glog (= 0.3.6) 389 | - Flipper-PeerTalk (= 0.0.4) 390 | - Flipper-RSocket (= 1.4.3) 391 | - FlipperKit (= 0.99.0) 392 | - FlipperKit/Core (= 0.99.0) 393 | - FlipperKit/CppBridge (= 0.99.0) 394 | - FlipperKit/FBCxxFollyDynamicConvert (= 0.99.0) 395 | - FlipperKit/FBDefines (= 0.99.0) 396 | - FlipperKit/FKPortForwarding (= 0.99.0) 397 | - FlipperKit/FlipperKitHighlightOverlay (= 0.99.0) 398 | - FlipperKit/FlipperKitLayoutPlugin (= 0.99.0) 399 | - FlipperKit/FlipperKitLayoutTextSearchable (= 0.99.0) 400 | - FlipperKit/FlipperKitNetworkPlugin (= 0.99.0) 401 | - FlipperKit/FlipperKitReactPlugin (= 0.99.0) 402 | - FlipperKit/FlipperKitUserDefaultsPlugin (= 0.99.0) 403 | - FlipperKit/SKIOSNetworkPlugin (= 0.99.0) 404 | - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`) 405 | - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`) 406 | - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`) 407 | - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`) 408 | - React (from `../node_modules/react-native/`) 409 | - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`) 410 | - React-Core (from `../node_modules/react-native/`) 411 | - React-Core/DevSupport (from `../node_modules/react-native/`) 412 | - React-Core/RCTWebSocket (from `../node_modules/react-native/`) 413 | - React-CoreModules (from `../node_modules/react-native/React/CoreModules`) 414 | - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`) 415 | - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`) 416 | - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`) 417 | - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`) 418 | - React-logger (from `../node_modules/react-native/ReactCommon/logger`) 419 | - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`) 420 | - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`) 421 | - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`) 422 | - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`) 423 | - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`) 424 | - React-RCTImage (from `../node_modules/react-native/Libraries/Image`) 425 | - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`) 426 | - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`) 427 | - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`) 428 | - React-RCTText (from `../node_modules/react-native/Libraries/Text`) 429 | - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`) 430 | - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`) 431 | - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`) 432 | - RNReanimated (from `../node_modules/react-native-reanimated`) 433 | - RNScreens (from `../node_modules/react-native-screens`) 434 | - Yoga (from `../node_modules/react-native/ReactCommon/yoga`) 435 | 436 | SPEC REPOS: 437 | trunk: 438 | - CocoaAsyncSocket 439 | - Flipper 440 | - Flipper-Boost-iOSX 441 | - Flipper-DoubleConversion 442 | - Flipper-Fmt 443 | - Flipper-Folly 444 | - Flipper-Glog 445 | - Flipper-PeerTalk 446 | - Flipper-RSocket 447 | - FlipperKit 448 | - fmt 449 | - libevent 450 | - OpenSSL-Universal 451 | - YogaKit 452 | 453 | EXTERNAL SOURCES: 454 | boost: 455 | :podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec" 456 | DoubleConversion: 457 | :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec" 458 | FBLazyVector: 459 | :path: "../node_modules/react-native/Libraries/FBLazyVector" 460 | FBReactNativeSpec: 461 | :path: "../node_modules/react-native/React/FBReactNativeSpec" 462 | glog: 463 | :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec" 464 | RCT-Folly: 465 | :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec" 466 | RCTRequired: 467 | :path: "../node_modules/react-native/Libraries/RCTRequired" 468 | RCTTypeSafety: 469 | :path: "../node_modules/react-native/Libraries/TypeSafety" 470 | React: 471 | :path: "../node_modules/react-native/" 472 | React-callinvoker: 473 | :path: "../node_modules/react-native/ReactCommon/callinvoker" 474 | React-Core: 475 | :path: "../node_modules/react-native/" 476 | React-CoreModules: 477 | :path: "../node_modules/react-native/React/CoreModules" 478 | React-cxxreact: 479 | :path: "../node_modules/react-native/ReactCommon/cxxreact" 480 | React-jsi: 481 | :path: "../node_modules/react-native/ReactCommon/jsi" 482 | React-jsiexecutor: 483 | :path: "../node_modules/react-native/ReactCommon/jsiexecutor" 484 | React-jsinspector: 485 | :path: "../node_modules/react-native/ReactCommon/jsinspector" 486 | React-logger: 487 | :path: "../node_modules/react-native/ReactCommon/logger" 488 | react-native-safe-area-context: 489 | :path: "../node_modules/react-native-safe-area-context" 490 | React-perflogger: 491 | :path: "../node_modules/react-native/ReactCommon/reactperflogger" 492 | React-RCTActionSheet: 493 | :path: "../node_modules/react-native/Libraries/ActionSheetIOS" 494 | React-RCTAnimation: 495 | :path: "../node_modules/react-native/Libraries/NativeAnimation" 496 | React-RCTBlob: 497 | :path: "../node_modules/react-native/Libraries/Blob" 498 | React-RCTImage: 499 | :path: "../node_modules/react-native/Libraries/Image" 500 | React-RCTLinking: 501 | :path: "../node_modules/react-native/Libraries/LinkingIOS" 502 | React-RCTNetwork: 503 | :path: "../node_modules/react-native/Libraries/Network" 504 | React-RCTSettings: 505 | :path: "../node_modules/react-native/Libraries/Settings" 506 | React-RCTText: 507 | :path: "../node_modules/react-native/Libraries/Text" 508 | React-RCTVibration: 509 | :path: "../node_modules/react-native/Libraries/Vibration" 510 | React-runtimeexecutor: 511 | :path: "../node_modules/react-native/ReactCommon/runtimeexecutor" 512 | ReactCommon: 513 | :path: "../node_modules/react-native/ReactCommon" 514 | RNReanimated: 515 | :path: "../node_modules/react-native-reanimated" 516 | RNScreens: 517 | :path: "../node_modules/react-native-screens" 518 | Yoga: 519 | :path: "../node_modules/react-native/ReactCommon/yoga" 520 | 521 | SPEC CHECKSUMS: 522 | boost: a7c83b31436843459a1961bfd74b96033dc77234 523 | CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99 524 | DoubleConversion: 831926d9b8bf8166fd87886c4abab286c2422662 525 | FBLazyVector: 500821d196c3d1bd10e7e828bc93ce075234080f 526 | FBReactNativeSpec: 74c869e2cffa2ffec685cd1bac6788c021da6005 527 | Flipper: 30e8eeeed6abdc98edaf32af0cda2f198be4b733 528 | Flipper-Boost-iOSX: fd1e2b8cbef7e662a122412d7ac5f5bea715403c 529 | Flipper-DoubleConversion: 57ffbe81ef95306cc9e69c4aa3aeeeeb58a6a28c 530 | Flipper-Fmt: 60cbdd92fc254826e61d669a5d87ef7015396a9b 531 | Flipper-Folly: 83af37379faa69497529e414bd43fbfc7cae259a 532 | Flipper-Glog: 1dfd6abf1e922806c52ceb8701a3599a79a200a6 533 | Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9 534 | Flipper-RSocket: d9d9ade67cbecf6ac10730304bf5607266dd2541 535 | FlipperKit: d8d346844eca5d9120c17d441a2f38596e8ed2b9 536 | fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9 537 | glog: 5337263514dd6f09803962437687240c5dc39aa4 538 | libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913 539 | OpenSSL-Universal: 1aa4f6a6ee7256b83db99ec1ccdaa80d10f9af9b 540 | RCT-Folly: a21c126816d8025b547704b777a2ba552f3d9fa9 541 | RCTRequired: 3cc065b52aa18db729268b9bd78a2feffb4d0f91 542 | RCTTypeSafety: 3c4fc37d5dea452d2ef17324db5504ec2f05083a 543 | React: 4a00720816c52a213424442954acb7e4b724804a 544 | React-callinvoker: 911fc6570538f3bb5c61edf9dc907c1beb4355bf 545 | React-Core: e134d3a5d7b2a1a731589be776e20dbb14868f27 546 | React-CoreModules: 2f8588b2aa47e7fef27125c8eaaabda963b3ac62 547 | React-cxxreact: 8f1382538cad0cc8b8eafca6d66268828e353bea 548 | React-jsi: 9fe1854d2c0486216acebd5db3c38b4ccb23ca0b 549 | React-jsiexecutor: db2f6e22a534d466fc0e34e622df47d9d20bab2f 550 | React-jsinspector: 8c0517dee5e8c70cd6c3066f20213ff7ce54f176 551 | React-logger: bfddd3418dc1d45b77b822958f3e31422e2c179b 552 | react-native-safe-area-context: 584dc04881deb49474363f3be89e4ca0e854c057 553 | React-perflogger: fcac6090a80e3d967791b4c7f1b1a017f9d4a398 554 | React-RCTActionSheet: caf5913d9f9e605f5467206cf9d1caa6d47d7ad6 555 | React-RCTAnimation: 6539e3bf594f6a529cd861985ba6548286ae1ead 556 | React-RCTBlob: 6e2e999d28b15fd03ed533f164ce33e0fcde571a 557 | React-RCTImage: c6bbb10eedb6b840c4474f2108b864173b83de15 558 | React-RCTLinking: 8fda9bb8fdb104e78110a903a9a77754318c7d11 559 | React-RCTNetwork: 2b26daad93830501cf14aab03eac04e304f942d3 560 | React-RCTSettings: 89c0dcee7adb706c749383596f57c1e882a27843 561 | React-RCTText: 71734fce8e6cb854daeb4a5eec182c303ea58473 562 | React-RCTVibration: 6600b5eed7c0fda4a433fa1198d1cb2690151791 563 | React-runtimeexecutor: 33a949a51bec5f8a3c9e8d8092deb259600d761e 564 | ReactCommon: 620442811dc6f707b4bf5e3b27d4f19c12d5a821 565 | RNReanimated: 0a220d11e97e5de1c552e943a9a3f89b06c2cbf2 566 | RNScreens: 6e1ea5787989f92b0671049b808aef64fa1ef98c 567 | Yoga: 2b4a01651f42a32f82e6cef3830a3ba48088237f 568 | YogaKit: f782866e155069a2cca2517aafea43200b01fd5a 569 | 570 | PODFILE CHECKSUM: 54cfb5be72a5a243eacfea1f4dd52754968dbdac 571 | 572 | COCOAPODS: 1.10.1 573 | -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Metro configuration for React Native 3 | * https://github.com/facebook/react-native 4 | * 5 | * @format 6 | */ 7 | 8 | module.exports = { 9 | transformer: { 10 | getTransformOptions: async () => ({ 11 | transform: { 12 | experimentalImportSupport: false, 13 | inlineRequires: true, 14 | }, 15 | }), 16 | }, 17 | }; 18 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "onlinelearningapp", 3 | "version": "0.0.1", 4 | "private": true, 5 | "scripts": { 6 | "android": "react-native run-android", 7 | "ios": "react-native run-ios", 8 | "start": "react-native start", 9 | "test": "jest", 10 | "lint": "eslint ." 11 | }, 12 | "dependencies": { 13 | "@react-navigation/native": "^6.0.6", 14 | "@react-navigation/native-stack": "^6.2.5", 15 | "react": "17.0.2", 16 | "react-native": "0.66.1", 17 | "react-native-reanimated": "^2.3.0-beta.2", 18 | "react-native-safe-area-context": "^3.3.2", 19 | "react-native-screens": "^3.8.0" 20 | }, 21 | "devDependencies": { 22 | "@babel/core": "^7.12.9", 23 | "@babel/runtime": "^7.12.5", 24 | "@react-native-community/eslint-config": "^2.0.0", 25 | "babel-jest": "^26.6.3", 26 | "eslint": "7.14.0", 27 | "jest": "^26.6.3", 28 | "metro-react-native-babel-preset": "^0.66.2", 29 | "react-test-renderer": "17.0.2" 30 | }, 31 | "jest": { 32 | "preset": "react-native" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | project: { 3 | ios: {}, 4 | android: {} 5 | }, 6 | assets: ["./assets/fonts/"] 7 | }; -------------------------------------------------------------------------------- /screens/Dashboard/Home.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { 3 | View, 4 | Text 5 | } from 'react-native'; 6 | 7 | const Home = () => { 8 | return ( 9 | 10 | Home 11 | 12 | ) 13 | } 14 | 15 | export default Home; -------------------------------------------------------------------------------- /screens/Dashboard/MainLayout.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { 3 | View, 4 | Text 5 | } from 'react-native'; 6 | 7 | const MainLayout = () => { 8 | return ( 9 | 10 | MainLayout 11 | 12 | ) 13 | } 14 | 15 | export default MainLayout; -------------------------------------------------------------------------------- /screens/Dashboard/Profile.js: -------------------------------------------------------------------------------- 1 | 2 | import React from 'react'; 3 | import { 4 | View, 5 | Text 6 | } from 'react-native'; 7 | 8 | const Profile = () => { 9 | return ( 10 | 11 | Profile 12 | 13 | ) 14 | } 15 | 16 | export default Profile; -------------------------------------------------------------------------------- /screens/Dashboard/Search.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { 3 | View, 4 | Text 5 | } from 'react-native'; 6 | 7 | const Search = () => { 8 | return ( 9 | 10 | Search 11 | 12 | ) 13 | } 14 | 15 | export default Search; -------------------------------------------------------------------------------- /screens/index.js: -------------------------------------------------------------------------------- 1 | // Dashboard 2 | import MainLayout from "./Dashboard/MainLayout" 3 | import Home from "./Dashboard/Home" 4 | import Profile from "./Dashboard/Profile" 5 | import Search from "./Dashboard/Search" 6 | 7 | export { 8 | MainLayout, 9 | Home, 10 | Profile, 11 | Search 12 | } --------------------------------------------------------------------------------