├── .gitignore ├── DUMMY.ev ├── README.md ├── android ├── .gitignore ├── app │ ├── build.gradle │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── supersimon │ │ │ └── meetingsApp │ │ │ └── ReactNativeFlipper.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── supersimon │ │ │ │ └── meetingsApp │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── splashscreen_image.png │ │ │ ├── drawable-mdpi │ │ │ └── splashscreen_image.png │ │ │ ├── drawable-xhdpi │ │ │ └── splashscreen_image.png │ │ │ ├── drawable-xxhdpi │ │ │ └── splashscreen_image.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── splashscreen_image.png │ │ │ ├── drawable │ │ │ ├── rn_edit_text_material.xml │ │ │ └── splashscreen.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── colors.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── release │ │ └── java │ │ └── com │ │ └── supersimon │ │ └── meetingsApp │ │ └── ReactNativeFlipper.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── app ├── (inside) │ ├── (room) │ │ └── [id].tsx │ ├── _layout.tsx │ └── index.tsx ├── _layout.tsx └── index.tsx ├── assets ├── data │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ └── rooms.ts ├── fonts │ └── SpaceMono-Regular.ttf └── images │ ├── adaptive-icon.png │ ├── favicon.png │ ├── icon.png │ └── splash.png ├── babel.config.js ├── components ├── ChatView.tsx ├── CustomBottomSheet.tsx ├── CustomCallControls.tsx └── CustomTopView.tsx ├── constants └── Colors.ts ├── context └── AuthContext.tsx ├── install.sh ├── ios ├── .gitignore ├── .xcode.env ├── Podfile ├── Podfile.lock ├── Podfile.properties.json ├── meetingsApp.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── meetingsApp.xcscheme ├── meetingsApp.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── meetingsApp │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── App-Icon-1024x1024@1x.png │ │ └── Contents.json │ ├── Contents.json │ ├── SplashScreen.imageset │ │ ├── Contents.json │ │ └── image.png │ └── SplashScreenBackground.imageset │ │ ├── Contents.json │ │ └── image.png │ ├── Info.plist │ ├── SplashScreen.storyboard │ ├── Supporting │ └── Expo.plist │ ├── main.m │ ├── meetingsApp-Bridging-Header.h │ ├── meetingsApp.entitlements │ └── noop-file.swift ├── metro.config.js ├── package.json ├── screenshots ├── 1.png ├── 2.png ├── 3.png └── 4.png └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/.gitignore -------------------------------------------------------------------------------- /DUMMY.ev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/DUMMY.ev -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/supersimon/meetingsApp/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/src/debug/java/com/supersimon/meetingsApp/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/supersimon/meetingsApp/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/src/main/java/com/supersimon/meetingsApp/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/supersimon/meetingsApp/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/src/main/java/com/supersimon/meetingsApp/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/src/main/res/drawable-hdpi/splashscreen_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/src/main/res/drawable-mdpi/splashscreen_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/src/main/res/drawable-xhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/src/main/res/drawable-xxhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/src/main/res/drawable-xxxhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/splashscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/src/main/res/drawable/splashscreen.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/release/java/com/supersimon/meetingsApp/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/app/src/release/java/com/supersimon/meetingsApp/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/app.json -------------------------------------------------------------------------------- /app/(inside)/(room)/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/app/(inside)/(room)/[id].tsx -------------------------------------------------------------------------------- /app/(inside)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/app/(inside)/_layout.tsx -------------------------------------------------------------------------------- /app/(inside)/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/app/(inside)/index.tsx -------------------------------------------------------------------------------- /app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/app/_layout.tsx -------------------------------------------------------------------------------- /app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/app/index.tsx -------------------------------------------------------------------------------- /assets/data/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/assets/data/1.png -------------------------------------------------------------------------------- /assets/data/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/assets/data/2.png -------------------------------------------------------------------------------- /assets/data/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/assets/data/3.png -------------------------------------------------------------------------------- /assets/data/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/assets/data/4.png -------------------------------------------------------------------------------- /assets/data/rooms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/assets/data/rooms.ts -------------------------------------------------------------------------------- /assets/fonts/SpaceMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/assets/fonts/SpaceMono-Regular.ttf -------------------------------------------------------------------------------- /assets/images/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/assets/images/adaptive-icon.png -------------------------------------------------------------------------------- /assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/assets/images/favicon.png -------------------------------------------------------------------------------- /assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/assets/images/icon.png -------------------------------------------------------------------------------- /assets/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/assets/images/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/babel.config.js -------------------------------------------------------------------------------- /components/ChatView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/components/ChatView.tsx -------------------------------------------------------------------------------- /components/CustomBottomSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/components/CustomBottomSheet.tsx -------------------------------------------------------------------------------- /components/CustomCallControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/components/CustomCallControls.tsx -------------------------------------------------------------------------------- /components/CustomTopView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/components/CustomTopView.tsx -------------------------------------------------------------------------------- /constants/Colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/constants/Colors.ts -------------------------------------------------------------------------------- /context/AuthContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/context/AuthContext.tsx -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/install.sh -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/ios/.xcode.env -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Podfile.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/ios/Podfile.properties.json -------------------------------------------------------------------------------- /ios/meetingsApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/ios/meetingsApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/meetingsApp.xcodeproj/xcshareddata/xcschemes/meetingsApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/ios/meetingsApp.xcodeproj/xcshareddata/xcschemes/meetingsApp.xcscheme -------------------------------------------------------------------------------- /ios/meetingsApp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/ios/meetingsApp.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/meetingsApp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/ios/meetingsApp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/meetingsApp/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/ios/meetingsApp/AppDelegate.h -------------------------------------------------------------------------------- /ios/meetingsApp/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/ios/meetingsApp/AppDelegate.mm -------------------------------------------------------------------------------- /ios/meetingsApp/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/ios/meetingsApp/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/meetingsApp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/ios/meetingsApp/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/meetingsApp/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/ios/meetingsApp/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/meetingsApp/Images.xcassets/SplashScreen.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/ios/meetingsApp/Images.xcassets/SplashScreen.imageset/Contents.json -------------------------------------------------------------------------------- /ios/meetingsApp/Images.xcassets/SplashScreen.imageset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/ios/meetingsApp/Images.xcassets/SplashScreen.imageset/image.png -------------------------------------------------------------------------------- /ios/meetingsApp/Images.xcassets/SplashScreenBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/ios/meetingsApp/Images.xcassets/SplashScreenBackground.imageset/Contents.json -------------------------------------------------------------------------------- /ios/meetingsApp/Images.xcassets/SplashScreenBackground.imageset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/ios/meetingsApp/Images.xcassets/SplashScreenBackground.imageset/image.png -------------------------------------------------------------------------------- /ios/meetingsApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/ios/meetingsApp/Info.plist -------------------------------------------------------------------------------- /ios/meetingsApp/SplashScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/ios/meetingsApp/SplashScreen.storyboard -------------------------------------------------------------------------------- /ios/meetingsApp/Supporting/Expo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/ios/meetingsApp/Supporting/Expo.plist -------------------------------------------------------------------------------- /ios/meetingsApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/ios/meetingsApp/main.m -------------------------------------------------------------------------------- /ios/meetingsApp/meetingsApp-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/ios/meetingsApp/meetingsApp-Bridging-Header.h -------------------------------------------------------------------------------- /ios/meetingsApp/meetingsApp.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/ios/meetingsApp/meetingsApp.entitlements -------------------------------------------------------------------------------- /ios/meetingsApp/noop-file.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/ios/meetingsApp/noop-file.swift -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/screenshots/2.png -------------------------------------------------------------------------------- /screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/screenshots/3.png -------------------------------------------------------------------------------- /screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/screenshots/4.png -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Galaxies-dev/meetings-react-native-stream/HEAD/tsconfig.json --------------------------------------------------------------------------------