├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .metadata ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ENCRYPTION.md ├── LICENSE ├── README.md ├── android ├── app │ ├── .gitattributes │ ├── build.gradle │ ├── google-services.json │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── .gitattributes │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── dev │ │ │ │ └── fliver │ │ │ │ └── rider │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher_foreground.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher_foreground.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher_foreground.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher_foreground.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── ic_launcher_foreground.png │ │ │ ├── drawable │ │ │ ├── app_icon.png │ │ │ └── launch_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ └── launcher_icon.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── credits │ ├── priyansh.jpg │ ├── urmil.jpg │ └── vinay.png ├── flare │ ├── fetching_location.flr │ ├── messages-dark.flr │ ├── messages-light.flr │ └── no_connection.flr ├── fonts │ └── AvenirNextRounded │ │ └── AvenirNextRounded-Medium.ttf ├── icon │ ├── icon-adaptive.png │ ├── icon-ios.png │ └── icon-legacy.png ├── logo │ ├── text-black.png │ ├── text-green.png │ └── text-white.png └── other │ ├── dark.png │ ├── howto.gif │ ├── light.png │ ├── messages.png │ ├── notification.png │ ├── people.png │ ├── rickshaw-mini.png │ ├── rickshaw.png │ ├── rickshaws.png │ └── swipe_button.png ├── branding ├── other │ ├── app-store-badge.png │ ├── google-play-badge.png │ ├── rickshaw.png │ └── text.png └── screenshots │ ├── 01.png │ ├── 02.png │ ├── 03.png │ ├── 04.png │ └── 05.png ├── ios ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ ├── Release.xcconfig │ └── flutter_export_environment.sh ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── Runner │ ├── .gitattributes │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-1024x1024@1x.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── GoogleService-Info.plist │ ├── Info.plist │ └── Runner-Bridging-Header.h ├── lib ├── main.dart ├── pages │ ├── about_page.dart │ ├── chat_page.dart │ ├── map_view_page.dart │ └── onboarding_page.dart ├── services │ ├── censor.dart │ └── firebase_analytics.dart ├── utils │ ├── colors.dart │ ├── first_page.dart │ ├── map_styles.dart │ ├── text_styles.dart │ └── ui_helpers.dart └── widgets │ ├── alerts.dart │ ├── emergency_call.dart │ ├── fetching_location.dart │ ├── message.dart │ ├── message_placeholder.dart │ ├── no_connection.dart │ ├── sexy_tile.dart │ └── swipe_button.dart ├── pubspec.lock └── pubspec.yaml /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/.metadata -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ENCRYPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ENCRYPTION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/README.md -------------------------------------------------------------------------------- /android/app/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/android/app/.gitattributes -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/android/app/google-services.json -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/android/app/src/main/.gitattributes -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/dev/fliver/rider/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/android/app/src/main/kotlin/dev/fliver/rider/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/android/app/src/main/res/drawable/app_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/launcher_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/android/app/src/main/res/mipmap-anydpi-v26/launcher_icon.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/android/app/src/main/res/mipmap-hdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/android/app/src/main/res/mipmap-mdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/android/app/src/main/res/mipmap-xhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/credits/priyansh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/assets/credits/priyansh.jpg -------------------------------------------------------------------------------- /assets/credits/urmil.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/assets/credits/urmil.jpg -------------------------------------------------------------------------------- /assets/credits/vinay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/assets/credits/vinay.png -------------------------------------------------------------------------------- /assets/flare/fetching_location.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/assets/flare/fetching_location.flr -------------------------------------------------------------------------------- /assets/flare/messages-dark.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/assets/flare/messages-dark.flr -------------------------------------------------------------------------------- /assets/flare/messages-light.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/assets/flare/messages-light.flr -------------------------------------------------------------------------------- /assets/flare/no_connection.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/assets/flare/no_connection.flr -------------------------------------------------------------------------------- /assets/fonts/AvenirNextRounded/AvenirNextRounded-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/assets/fonts/AvenirNextRounded/AvenirNextRounded-Medium.ttf -------------------------------------------------------------------------------- /assets/icon/icon-adaptive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/assets/icon/icon-adaptive.png -------------------------------------------------------------------------------- /assets/icon/icon-ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/assets/icon/icon-ios.png -------------------------------------------------------------------------------- /assets/icon/icon-legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/assets/icon/icon-legacy.png -------------------------------------------------------------------------------- /assets/logo/text-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/assets/logo/text-black.png -------------------------------------------------------------------------------- /assets/logo/text-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/assets/logo/text-green.png -------------------------------------------------------------------------------- /assets/logo/text-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/assets/logo/text-white.png -------------------------------------------------------------------------------- /assets/other/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/assets/other/dark.png -------------------------------------------------------------------------------- /assets/other/howto.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/assets/other/howto.gif -------------------------------------------------------------------------------- /assets/other/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/assets/other/light.png -------------------------------------------------------------------------------- /assets/other/messages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/assets/other/messages.png -------------------------------------------------------------------------------- /assets/other/notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/assets/other/notification.png -------------------------------------------------------------------------------- /assets/other/people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/assets/other/people.png -------------------------------------------------------------------------------- /assets/other/rickshaw-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/assets/other/rickshaw-mini.png -------------------------------------------------------------------------------- /assets/other/rickshaw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/assets/other/rickshaw.png -------------------------------------------------------------------------------- /assets/other/rickshaws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/assets/other/rickshaws.png -------------------------------------------------------------------------------- /assets/other/swipe_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/assets/other/swipe_button.png -------------------------------------------------------------------------------- /branding/other/app-store-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/branding/other/app-store-badge.png -------------------------------------------------------------------------------- /branding/other/google-play-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/branding/other/google-play-badge.png -------------------------------------------------------------------------------- /branding/other/rickshaw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/branding/other/rickshaw.png -------------------------------------------------------------------------------- /branding/other/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/branding/other/text.png -------------------------------------------------------------------------------- /branding/screenshots/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/branding/screenshots/01.png -------------------------------------------------------------------------------- /branding/screenshots/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/branding/screenshots/02.png -------------------------------------------------------------------------------- /branding/screenshots/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/branding/screenshots/03.png -------------------------------------------------------------------------------- /branding/screenshots/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/branding/screenshots/04.png -------------------------------------------------------------------------------- /branding/screenshots/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/branding/screenshots/05.png -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/flutter_export_environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Flutter/flutter_export_environment.sh -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Runner/.gitattributes -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Runner/GoogleService-Info.plist -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/pages/about_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/lib/pages/about_page.dart -------------------------------------------------------------------------------- /lib/pages/chat_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/lib/pages/chat_page.dart -------------------------------------------------------------------------------- /lib/pages/map_view_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/lib/pages/map_view_page.dart -------------------------------------------------------------------------------- /lib/pages/onboarding_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/lib/pages/onboarding_page.dart -------------------------------------------------------------------------------- /lib/services/censor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/lib/services/censor.dart -------------------------------------------------------------------------------- /lib/services/firebase_analytics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/lib/services/firebase_analytics.dart -------------------------------------------------------------------------------- /lib/utils/colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/lib/utils/colors.dart -------------------------------------------------------------------------------- /lib/utils/first_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/lib/utils/first_page.dart -------------------------------------------------------------------------------- /lib/utils/map_styles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/lib/utils/map_styles.dart -------------------------------------------------------------------------------- /lib/utils/text_styles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/lib/utils/text_styles.dart -------------------------------------------------------------------------------- /lib/utils/ui_helpers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/lib/utils/ui_helpers.dart -------------------------------------------------------------------------------- /lib/widgets/alerts.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/lib/widgets/alerts.dart -------------------------------------------------------------------------------- /lib/widgets/emergency_call.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/lib/widgets/emergency_call.dart -------------------------------------------------------------------------------- /lib/widgets/fetching_location.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/lib/widgets/fetching_location.dart -------------------------------------------------------------------------------- /lib/widgets/message.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/lib/widgets/message.dart -------------------------------------------------------------------------------- /lib/widgets/message_placeholder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/lib/widgets/message_placeholder.dart -------------------------------------------------------------------------------- /lib/widgets/no_connection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/lib/widgets/no_connection.dart -------------------------------------------------------------------------------- /lib/widgets/sexy_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/lib/widgets/sexy_tile.dart -------------------------------------------------------------------------------- /lib/widgets/swipe_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/lib/widgets/swipe_button.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fliverdev/rider/HEAD/pubspec.yaml --------------------------------------------------------------------------------