├── .github └── workflows │ ├── configs │ └── configuration.json │ └── main.yaml ├── .gitignore ├── .metadata ├── .vscode ├── extensions.json └── launch.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-playstore.png │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── file_sharing │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_rounded.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── anim │ ├── files.json │ ├── scanning.json │ └── starting_rocket.json └── images │ └── logo │ ├── ic_launcher.png │ ├── ic_launcher_adaptive_back.png │ ├── ic_launcher_adaptive_fore.png │ ├── icon.svg │ ├── logo_white_bg.png │ └── logo_white_fg.png ├── coverage └── lcov.info ├── flutter_native_splash.yaml ├── icons_launcher.yaml ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── Runner │ ├── 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 │ ├── Info.plist │ └── Runner-Bridging-Header.h └── RunnerTests │ └── RunnerTests.swift ├── l10n.yaml ├── lib ├── app │ ├── app.dart │ └── view │ │ └── app.dart ├── bootstrap.dart ├── const │ ├── app_urls.dart │ └── resource.dart ├── core │ ├── local_storage │ │ ├── app_storage.dart │ │ └── app_storage_pod.dart │ ├── router │ │ ├── auto_route_observer.dart │ │ ├── router.dart │ │ ├── router.gr.dart │ │ └── router_pod.dart │ └── theme │ │ ├── app_theme.dart │ │ └── theme_controller.dart ├── data │ ├── model │ │ ├── check_server_model.dart │ │ ├── file_model.dart │ │ ├── file_paths_model.dart │ │ ├── file_select_model.dart │ │ ├── range_header.dart │ │ ├── receiver_model.dart │ │ ├── sender_model.dart │ │ ├── server_info.dart │ │ └── update_model.dart │ └── service │ │ ├── receiver │ │ ├── receiver_service.dart │ │ └── receiver_service_pod.dart │ │ └── sender │ │ ├── sender_service.dart │ │ └── sender_service_pod.dart ├── device_preview │ ├── device_preview.dart │ └── src │ │ ├── device_preview.dart │ │ ├── locales │ │ ├── default_locales.dart │ │ └── locales.dart │ │ ├── state │ │ ├── custom_device.dart │ │ ├── state.dart │ │ ├── state.freezed.dart │ │ ├── state.g.dart │ │ └── store.dart │ │ ├── storage │ │ ├── file │ │ │ ├── file.dart │ │ │ ├── file_io.dart │ │ │ ├── file_mock.dart │ │ │ └── file_web.dart │ │ ├── preferences │ │ │ ├── preferences.dart │ │ │ ├── preferences_io.dart │ │ │ ├── preferences_mock.dart │ │ │ └── preferences_web.dart │ │ └── storage.dart │ │ ├── utilities │ │ ├── assert_inherited_media_query.dart │ │ ├── json_converters.dart │ │ ├── media_query_observer.dart │ │ └── screenshot.dart │ │ └── views │ │ ├── large.dart │ │ ├── small.dart │ │ ├── theme.dart │ │ └── tool_panel │ │ ├── sections │ │ ├── accessibility.dart │ │ ├── device.dart │ │ ├── section.dart │ │ ├── settings.dart │ │ ├── subsections │ │ │ ├── custom_device.dart │ │ │ ├── device_model.dart │ │ │ └── locale.dart │ │ └── system.dart │ │ ├── tool_panel.dart │ │ └── widgets │ │ ├── device_type_icon.dart │ │ ├── search_field.dart │ │ └── target_platform_icon.dart ├── device_preview_screenshot │ ├── .gitignore │ ├── .metadata │ ├── .vscode │ │ └── launch.json │ ├── device_preview_screenshot.dart │ └── src │ │ ├── processors │ │ ├── base64.dart │ │ ├── file.dart │ │ └── processor.dart │ │ └── section.dart ├── features │ ├── confirm_connection │ │ └── view │ │ │ └── confirm_connection_page.dart │ ├── counter │ │ ├── controller │ │ │ ├── counter_state_pod.dart │ │ │ └── notifier │ │ │ │ └── counter_notifier.dart │ │ ├── counter.dart │ │ └── view │ │ │ └── counter_page.dart │ ├── device_share │ │ ├── controller │ │ │ └── files_list_pods.dart │ │ └── view │ │ │ ├── device_share_page.dart │ │ │ └── tabs │ │ │ ├── device_info_tab_page.dart │ │ │ └── sender_files_tab_page.dart │ ├── downloads │ │ └── view │ │ │ └── downloads_page.dart │ ├── file_download_btn │ │ ├── controller │ │ │ ├── file_download_pod.dart │ │ │ └── notifier │ │ │ │ └── file_download_notifier.dart │ │ ├── state │ │ │ └── file_download_state.dart │ │ └── view │ │ │ └── file_download_btn.dart │ ├── file_selector │ │ ├── controller │ │ │ ├── notifier │ │ │ │ └── selected_files_notifier.dart │ │ │ └── selected_files_list_pod.dart │ │ ├── state │ │ │ └── select_file_state.dart │ │ └── view │ │ │ ├── file_list_view.dart │ │ │ └── file_selector_page.dart │ ├── help_dialog │ │ └── view │ │ │ └── help_dialog_page.dart │ ├── home │ │ └── view │ │ │ └── home_page.dart │ ├── manual_connect │ │ └── view │ │ │ └── manual_connect_page.dart │ ├── qr_scan │ │ └── qr_scan_page.dart │ ├── receive │ │ ├── controller │ │ │ ├── connect_pod.dart │ │ │ ├── notifier │ │ │ │ └── connect_btn_notifier.dart │ │ │ └── receive_pods.dart │ │ ├── state │ │ │ ├── connect_btn_state_pod.dart │ │ │ └── receive_scan_start.dart │ │ └── view │ │ │ ├── receive_page.dart │ │ │ ├── receive_state_page.dart │ │ │ └── widget │ │ │ └── connect_btn.dart │ ├── send │ │ ├── controller │ │ │ ├── notifier │ │ │ │ └── send_state_notifier.dart │ │ │ └── send_notifier_pod.dart │ │ ├── state │ │ │ └── send_state.dart │ │ └── view │ │ │ ├── send_page.dart │ │ │ ├── send_state_page.dart │ │ │ ├── ui_state │ │ │ ├── started_server_view.dart │ │ │ └── starting_server_view.dart │ │ │ └── widgets │ │ │ ├── action_dialog.dart │ │ │ ├── files_bottomsheet.dart │ │ │ ├── send_actions.dart │ │ │ ├── server_info_box.dart │ │ │ └── share_on_web.dart │ ├── settings │ │ ├── controller │ │ │ └── current_version_pod.dart │ │ └── view │ │ │ ├── settings_page.dart │ │ │ └── widget │ │ │ └── about_app_tile.dart │ ├── theme_segmented_btn │ │ ├── controller │ │ │ └── selection_theme_pod.dart │ │ └── view │ │ │ └── theme_segmented_btn.dart │ └── update_app_version │ │ ├── controller │ │ ├── check_update_available.dart │ │ ├── check_update_version.dart │ │ └── get_changelog_pod.dart │ │ └── view │ │ ├── changelog_page.dart │ │ ├── update_app_version_icon.dart │ │ └── widgets │ │ └── animated_sync.dart ├── init.dart ├── l10n │ ├── arb │ │ ├── app_en.arb │ │ ├── app_es.arb │ │ └── app_or.arb │ └── l10n.dart ├── main.dart ├── main_development.dart ├── main_production.dart ├── main_staging.dart ├── shared │ ├── api_client │ │ └── dio │ │ │ ├── bad_certificate_fixer.dart │ │ │ ├── default_api_error_handler.dart │ │ │ ├── default_api_interceptor.dart │ │ │ ├── default_time_response_interceptor.dart │ │ │ ├── dio_client_provider.dart │ │ │ └── form_data_interceptor.dart │ ├── exception │ │ └── base_exception.dart │ ├── helper │ │ ├── file_list_html_render.dart │ │ ├── global_helper.dart │ │ ├── network_helper.dart │ │ ├── range_downloader.dart │ │ └── version.dart │ ├── pods │ │ ├── internet_checker_pod.dart │ │ └── locale_pod.dart │ ├── riverpod_ext │ │ ├── asynvalue_easy_when.dart │ │ ├── cache_extensions.dart │ │ ├── cancel_extensions.dart │ │ ├── riverpod_extensions.dart │ │ └── riverpod_observer.dart │ └── widget │ │ ├── app_locale_popup.dart │ │ ├── app_logo.dart │ │ ├── custom_app_bar.dart │ │ ├── no_internet_widget.dart │ │ ├── os_logo.dart │ │ └── responsive_wrapper.dart └── velocity_x │ ├── src │ ├── dart │ │ ├── guard.dart │ │ ├── language.dart │ │ ├── rest.dart │ │ └── timeline.dart │ ├── extensions │ │ ├── bool_ext.dart │ │ ├── box_constraints_ext.dart │ │ ├── context_ext.dart │ │ ├── date_time_ext.dart │ │ ├── iterable_ext.dart │ │ ├── list_ext.dart │ │ ├── misc_ext.dart │ │ ├── num_ext.dart │ │ ├── string_ext.dart │ │ └── web3_ext.dart │ ├── flutter │ │ ├── animated │ │ │ ├── animated_container.dart │ │ │ └── animated_height.dart │ │ ├── badge.dart │ │ ├── bottom_sheet.dart │ │ ├── builder.dart │ │ ├── card.dart │ │ ├── center.dart │ │ ├── clippers │ │ │ ├── vx_arc.dart │ │ │ ├── vx_diagonal.dart │ │ │ └── vx_half.dart │ │ ├── common │ │ │ ├── velocity_conditional.dart │ │ │ ├── velocity_curve.dart │ │ │ ├── velocity_ensure_visible.dart │ │ │ ├── velocity_responsive.dart │ │ │ ├── velocity_round.dart │ │ │ ├── velocity_two.dart │ │ │ └── velocity_zero.dart │ │ ├── container.dart │ │ ├── dark_mode.dart │ │ ├── dash.dart │ │ ├── dialog.dart │ │ ├── divider.dart │ │ ├── drawer.dart │ │ ├── drop_down_button.dart │ │ ├── filters.dart │ │ ├── flex.dart │ │ ├── gesture.dart │ │ ├── glass.dart │ │ ├── hover.dart │ │ ├── icon.dart │ │ ├── json.dart │ │ ├── list.dart │ │ ├── marquee.dart │ │ ├── misc.dart │ │ ├── navigation.dart │ │ ├── nothing.dart │ │ ├── object.dart │ │ ├── opacity.dart │ │ ├── padding.dart │ │ ├── pinview.dart │ │ ├── platforms.dart │ │ ├── popup_menu.dart │ │ ├── preview.dart │ │ ├── random.dart │ │ ├── rating.dart │ │ ├── rich_text.dart │ │ ├── routes.dart │ │ ├── scroll.dart │ │ ├── selectable_text.dart │ │ ├── shapes.dart │ │ ├── shift.dart │ │ ├── shimmer.dart │ │ ├── sizedbox.dart │ │ ├── skeleton.dart │ │ ├── stepper.dart │ │ ├── swiper.dart │ │ ├── switcher.dart │ │ ├── table.dart │ │ ├── text.dart │ │ ├── textfield.dart │ │ ├── theme.dart │ │ ├── timeline │ │ │ ├── timeline_painter.dart │ │ │ ├── timeline_view.dart │ │ │ └── timeline_widget.dart │ │ ├── toast.dart │ │ ├── transform.dart │ │ ├── universal.dart │ │ ├── velocityx_mixins │ │ │ ├── alignment_mixin.dart │ │ │ ├── color_mixin.dart │ │ │ ├── curves_mixin.dart │ │ │ ├── duration_mixin.dart │ │ │ ├── gradient_mixin.dart │ │ │ ├── neu_mixin.dart │ │ │ ├── padding_mixin.dart │ │ │ ├── render_mixin.dart │ │ │ ├── round_mixin.dart │ │ │ └── shadow_mixin.dart │ │ └── widgets.dart │ ├── nav │ │ ├── i_vx_nav.dart │ │ ├── vx_nav.dart │ │ └── vx_nav_web.dart │ ├── responsive_ui.dart │ └── velocity_xx.dart │ └── velocity_x.dart ├── linux ├── .gitignore ├── CMakeLists.txt ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake ├── main.cc ├── my_application.cc └── my_application.h ├── macos ├── .gitignore ├── Flutter │ ├── Flutter-Debug.xcconfig │ ├── Flutter-Release.xcconfig │ └── GeneratedPluginRegistrant.swift ├── Podfile ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── app_icon_1024.png │ │ │ ├── app_icon_128.png │ │ │ ├── app_icon_16.png │ │ │ ├── app_icon_256.png │ │ │ ├── app_icon_32.png │ │ │ ├── app_icon_512.png │ │ │ └── app_icon_64.png │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── Configs │ │ ├── AppInfo.xcconfig │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ └── Warnings.xcconfig │ ├── DebugProfile.entitlements │ ├── Info.plist │ ├── MainFlutterWindow.swift │ └── Release.entitlements └── RunnerTests │ └── RunnerTests.swift ├── pubspec.lock ├── pubspec.yaml ├── riverpod_simple_architecture.md ├── screenshot ├── 1.png ├── 10.png ├── 11.png ├── 12.png ├── 13.png ├── 14.png ├── 15.png ├── 16.png ├── 17.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png └── 9.png ├── test ├── app │ └── view │ │ └── app_test.dart ├── core │ ├── storage │ │ └── app_storage_test.dart │ └── theme │ │ └── theme_controller_pod_test.dart ├── features │ ├── counter │ │ ├── pod │ │ │ └── counter_pod_test.dart │ │ └── view │ │ │ └── counter_page_test.dart │ └── theme_segment_btn │ │ └── view │ │ └── theme_segment_btn_test.dart ├── helpers │ ├── helpers.dart │ └── pump_app.dart ├── init_test.dart ├── shared │ ├── api_client │ │ └── dio │ │ │ └── dio_client_provider_test.dart │ ├── exception │ │ └── exception_test.dart │ ├── pods │ │ ├── internet_checker_pod_test.dart │ │ └── locale_pod_test.dart │ ├── riverpod_ext │ │ ├── asynvalue_easywhen_test.dart │ │ └── cache_extension_test.dart │ └── widgets │ │ ├── app_locale_popup_test.dart │ │ └── no_interenet_widget_test.dart └── widget_test.dart ├── web ├── favicon.png ├── icons │ ├── Icon-192.png │ ├── Icon-512.png │ ├── Icon-maskable-192.png │ └── Icon-maskable-512.png ├── index.html └── manifest.json └── windows ├── .gitignore ├── CMakeLists.txt ├── flutter ├── CMakeLists.txt ├── generated_plugin_registrant.cc ├── generated_plugin_registrant.h └── generated_plugins.cmake └── runner ├── CMakeLists.txt ├── Runner.rc ├── flutter_window.cpp ├── flutter_window.h ├── main.cpp ├── resource.h ├── resources └── app_icon.ico ├── runner.exe.manifest ├── utils.cpp ├── utils.h ├── win32_window.cpp └── win32_window.h /.github/workflows/configs/configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/.github/workflows/configs/configuration.json -------------------------------------------------------------------------------- /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/.metadata -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/android/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/file_sharing/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/android/app/src/main/kotlin/com/example/file_sharing/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_rounded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_rounded.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/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/88-degrees/file-sharing/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/88-degrees/file-sharing/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/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/88-degrees/file-sharing/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/88-degrees/file-sharing/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/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/88-degrees/file-sharing/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/88-degrees/file-sharing/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/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/88-degrees/file-sharing/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/88-degrees/file-sharing/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/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/88-degrees/file-sharing/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/anim/files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/assets/anim/files.json -------------------------------------------------------------------------------- /assets/anim/scanning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/assets/anim/scanning.json -------------------------------------------------------------------------------- /assets/anim/starting_rocket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/assets/anim/starting_rocket.json -------------------------------------------------------------------------------- /assets/images/logo/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/assets/images/logo/ic_launcher.png -------------------------------------------------------------------------------- /assets/images/logo/ic_launcher_adaptive_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/assets/images/logo/ic_launcher_adaptive_back.png -------------------------------------------------------------------------------- /assets/images/logo/ic_launcher_adaptive_fore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/assets/images/logo/ic_launcher_adaptive_fore.png -------------------------------------------------------------------------------- /assets/images/logo/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/assets/images/logo/icon.svg -------------------------------------------------------------------------------- /assets/images/logo/logo_white_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/assets/images/logo/logo_white_bg.png -------------------------------------------------------------------------------- /assets/images/logo/logo_white_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/assets/images/logo/logo_white_fg.png -------------------------------------------------------------------------------- /coverage/lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/coverage/lcov.info -------------------------------------------------------------------------------- /flutter_native_splash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/flutter_native_splash.yaml -------------------------------------------------------------------------------- /icons_launcher.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/icons_launcher.yaml -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/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/88-degrees/file-sharing/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/88-degrees/file-sharing/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/88-degrees/file-sharing/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/88-degrees/file-sharing/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/88-degrees/file-sharing/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/88-degrees/file-sharing/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/88-degrees/file-sharing/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/88-degrees/file-sharing/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/88-degrees/file-sharing/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/88-degrees/file-sharing/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/88-degrees/file-sharing/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/88-degrees/file-sharing/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/88-degrees/file-sharing/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/88-degrees/file-sharing/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/88-degrees/file-sharing/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /l10n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/l10n.yaml -------------------------------------------------------------------------------- /lib/app/app.dart: -------------------------------------------------------------------------------- 1 | export 'view/app.dart'; 2 | -------------------------------------------------------------------------------- /lib/app/view/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/app/view/app.dart -------------------------------------------------------------------------------- /lib/bootstrap.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/bootstrap.dart -------------------------------------------------------------------------------- /lib/const/app_urls.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/const/app_urls.dart -------------------------------------------------------------------------------- /lib/const/resource.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/const/resource.dart -------------------------------------------------------------------------------- /lib/core/local_storage/app_storage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/core/local_storage/app_storage.dart -------------------------------------------------------------------------------- /lib/core/local_storage/app_storage_pod.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/core/local_storage/app_storage_pod.dart -------------------------------------------------------------------------------- /lib/core/router/auto_route_observer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/core/router/auto_route_observer.dart -------------------------------------------------------------------------------- /lib/core/router/router.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/core/router/router.dart -------------------------------------------------------------------------------- /lib/core/router/router.gr.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/core/router/router.gr.dart -------------------------------------------------------------------------------- /lib/core/router/router_pod.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/core/router/router_pod.dart -------------------------------------------------------------------------------- /lib/core/theme/app_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/core/theme/app_theme.dart -------------------------------------------------------------------------------- /lib/core/theme/theme_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/core/theme/theme_controller.dart -------------------------------------------------------------------------------- /lib/data/model/check_server_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/data/model/check_server_model.dart -------------------------------------------------------------------------------- /lib/data/model/file_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/data/model/file_model.dart -------------------------------------------------------------------------------- /lib/data/model/file_paths_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/data/model/file_paths_model.dart -------------------------------------------------------------------------------- /lib/data/model/file_select_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/data/model/file_select_model.dart -------------------------------------------------------------------------------- /lib/data/model/range_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/data/model/range_header.dart -------------------------------------------------------------------------------- /lib/data/model/receiver_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/data/model/receiver_model.dart -------------------------------------------------------------------------------- /lib/data/model/sender_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/data/model/sender_model.dart -------------------------------------------------------------------------------- /lib/data/model/server_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/data/model/server_info.dart -------------------------------------------------------------------------------- /lib/data/model/update_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/data/model/update_model.dart -------------------------------------------------------------------------------- /lib/data/service/receiver/receiver_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/data/service/receiver/receiver_service.dart -------------------------------------------------------------------------------- /lib/data/service/receiver/receiver_service_pod.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/data/service/receiver/receiver_service_pod.dart -------------------------------------------------------------------------------- /lib/data/service/sender/sender_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/data/service/sender/sender_service.dart -------------------------------------------------------------------------------- /lib/data/service/sender/sender_service_pod.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/data/service/sender/sender_service_pod.dart -------------------------------------------------------------------------------- /lib/device_preview/device_preview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/device_preview.dart -------------------------------------------------------------------------------- /lib/device_preview/src/device_preview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/device_preview.dart -------------------------------------------------------------------------------- /lib/device_preview/src/locales/default_locales.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/locales/default_locales.dart -------------------------------------------------------------------------------- /lib/device_preview/src/locales/locales.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/locales/locales.dart -------------------------------------------------------------------------------- /lib/device_preview/src/state/custom_device.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/state/custom_device.dart -------------------------------------------------------------------------------- /lib/device_preview/src/state/state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/state/state.dart -------------------------------------------------------------------------------- /lib/device_preview/src/state/state.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/state/state.freezed.dart -------------------------------------------------------------------------------- /lib/device_preview/src/state/state.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/state/state.g.dart -------------------------------------------------------------------------------- /lib/device_preview/src/state/store.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/state/store.dart -------------------------------------------------------------------------------- /lib/device_preview/src/storage/file/file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/storage/file/file.dart -------------------------------------------------------------------------------- /lib/device_preview/src/storage/file/file_io.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/storage/file/file_io.dart -------------------------------------------------------------------------------- /lib/device_preview/src/storage/file/file_mock.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/storage/file/file_mock.dart -------------------------------------------------------------------------------- /lib/device_preview/src/storage/file/file_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/storage/file/file_web.dart -------------------------------------------------------------------------------- /lib/device_preview/src/storage/preferences/preferences.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/storage/preferences/preferences.dart -------------------------------------------------------------------------------- /lib/device_preview/src/storage/preferences/preferences_io.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/storage/preferences/preferences_io.dart -------------------------------------------------------------------------------- /lib/device_preview/src/storage/preferences/preferences_mock.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/storage/preferences/preferences_mock.dart -------------------------------------------------------------------------------- /lib/device_preview/src/storage/preferences/preferences_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/storage/preferences/preferences_web.dart -------------------------------------------------------------------------------- /lib/device_preview/src/storage/storage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/storage/storage.dart -------------------------------------------------------------------------------- /lib/device_preview/src/utilities/assert_inherited_media_query.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/utilities/assert_inherited_media_query.dart -------------------------------------------------------------------------------- /lib/device_preview/src/utilities/json_converters.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/utilities/json_converters.dart -------------------------------------------------------------------------------- /lib/device_preview/src/utilities/media_query_observer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/utilities/media_query_observer.dart -------------------------------------------------------------------------------- /lib/device_preview/src/utilities/screenshot.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/utilities/screenshot.dart -------------------------------------------------------------------------------- /lib/device_preview/src/views/large.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/views/large.dart -------------------------------------------------------------------------------- /lib/device_preview/src/views/small.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/views/small.dart -------------------------------------------------------------------------------- /lib/device_preview/src/views/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/views/theme.dart -------------------------------------------------------------------------------- /lib/device_preview/src/views/tool_panel/sections/accessibility.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/views/tool_panel/sections/accessibility.dart -------------------------------------------------------------------------------- /lib/device_preview/src/views/tool_panel/sections/device.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/views/tool_panel/sections/device.dart -------------------------------------------------------------------------------- /lib/device_preview/src/views/tool_panel/sections/section.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/views/tool_panel/sections/section.dart -------------------------------------------------------------------------------- /lib/device_preview/src/views/tool_panel/sections/settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/views/tool_panel/sections/settings.dart -------------------------------------------------------------------------------- /lib/device_preview/src/views/tool_panel/sections/subsections/custom_device.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/views/tool_panel/sections/subsections/custom_device.dart -------------------------------------------------------------------------------- /lib/device_preview/src/views/tool_panel/sections/subsections/device_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/views/tool_panel/sections/subsections/device_model.dart -------------------------------------------------------------------------------- /lib/device_preview/src/views/tool_panel/sections/subsections/locale.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/views/tool_panel/sections/subsections/locale.dart -------------------------------------------------------------------------------- /lib/device_preview/src/views/tool_panel/sections/system.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/views/tool_panel/sections/system.dart -------------------------------------------------------------------------------- /lib/device_preview/src/views/tool_panel/tool_panel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/views/tool_panel/tool_panel.dart -------------------------------------------------------------------------------- /lib/device_preview/src/views/tool_panel/widgets/device_type_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/views/tool_panel/widgets/device_type_icon.dart -------------------------------------------------------------------------------- /lib/device_preview/src/views/tool_panel/widgets/search_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/views/tool_panel/widgets/search_field.dart -------------------------------------------------------------------------------- /lib/device_preview/src/views/tool_panel/widgets/target_platform_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview/src/views/tool_panel/widgets/target_platform_icon.dart -------------------------------------------------------------------------------- /lib/device_preview_screenshot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview_screenshot/.gitignore -------------------------------------------------------------------------------- /lib/device_preview_screenshot/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview_screenshot/.metadata -------------------------------------------------------------------------------- /lib/device_preview_screenshot/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview_screenshot/.vscode/launch.json -------------------------------------------------------------------------------- /lib/device_preview_screenshot/device_preview_screenshot.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview_screenshot/device_preview_screenshot.dart -------------------------------------------------------------------------------- /lib/device_preview_screenshot/src/processors/base64.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview_screenshot/src/processors/base64.dart -------------------------------------------------------------------------------- /lib/device_preview_screenshot/src/processors/file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview_screenshot/src/processors/file.dart -------------------------------------------------------------------------------- /lib/device_preview_screenshot/src/processors/processor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview_screenshot/src/processors/processor.dart -------------------------------------------------------------------------------- /lib/device_preview_screenshot/src/section.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/device_preview_screenshot/src/section.dart -------------------------------------------------------------------------------- /lib/features/confirm_connection/view/confirm_connection_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/confirm_connection/view/confirm_connection_page.dart -------------------------------------------------------------------------------- /lib/features/counter/controller/counter_state_pod.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/counter/controller/counter_state_pod.dart -------------------------------------------------------------------------------- /lib/features/counter/controller/notifier/counter_notifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/counter/controller/notifier/counter_notifier.dart -------------------------------------------------------------------------------- /lib/features/counter/counter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/counter/counter.dart -------------------------------------------------------------------------------- /lib/features/counter/view/counter_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/counter/view/counter_page.dart -------------------------------------------------------------------------------- /lib/features/device_share/controller/files_list_pods.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/device_share/controller/files_list_pods.dart -------------------------------------------------------------------------------- /lib/features/device_share/view/device_share_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/device_share/view/device_share_page.dart -------------------------------------------------------------------------------- /lib/features/device_share/view/tabs/device_info_tab_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/device_share/view/tabs/device_info_tab_page.dart -------------------------------------------------------------------------------- /lib/features/device_share/view/tabs/sender_files_tab_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/device_share/view/tabs/sender_files_tab_page.dart -------------------------------------------------------------------------------- /lib/features/downloads/view/downloads_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/downloads/view/downloads_page.dart -------------------------------------------------------------------------------- /lib/features/file_download_btn/controller/file_download_pod.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/file_download_btn/controller/file_download_pod.dart -------------------------------------------------------------------------------- /lib/features/file_download_btn/controller/notifier/file_download_notifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/file_download_btn/controller/notifier/file_download_notifier.dart -------------------------------------------------------------------------------- /lib/features/file_download_btn/state/file_download_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/file_download_btn/state/file_download_state.dart -------------------------------------------------------------------------------- /lib/features/file_download_btn/view/file_download_btn.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/file_download_btn/view/file_download_btn.dart -------------------------------------------------------------------------------- /lib/features/file_selector/controller/notifier/selected_files_notifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/file_selector/controller/notifier/selected_files_notifier.dart -------------------------------------------------------------------------------- /lib/features/file_selector/controller/selected_files_list_pod.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/file_selector/controller/selected_files_list_pod.dart -------------------------------------------------------------------------------- /lib/features/file_selector/state/select_file_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/file_selector/state/select_file_state.dart -------------------------------------------------------------------------------- /lib/features/file_selector/view/file_list_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/file_selector/view/file_list_view.dart -------------------------------------------------------------------------------- /lib/features/file_selector/view/file_selector_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/file_selector/view/file_selector_page.dart -------------------------------------------------------------------------------- /lib/features/help_dialog/view/help_dialog_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/help_dialog/view/help_dialog_page.dart -------------------------------------------------------------------------------- /lib/features/home/view/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/home/view/home_page.dart -------------------------------------------------------------------------------- /lib/features/manual_connect/view/manual_connect_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/manual_connect/view/manual_connect_page.dart -------------------------------------------------------------------------------- /lib/features/qr_scan/qr_scan_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/qr_scan/qr_scan_page.dart -------------------------------------------------------------------------------- /lib/features/receive/controller/connect_pod.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/receive/controller/connect_pod.dart -------------------------------------------------------------------------------- /lib/features/receive/controller/notifier/connect_btn_notifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/receive/controller/notifier/connect_btn_notifier.dart -------------------------------------------------------------------------------- /lib/features/receive/controller/receive_pods.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/receive/controller/receive_pods.dart -------------------------------------------------------------------------------- /lib/features/receive/state/connect_btn_state_pod.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/receive/state/connect_btn_state_pod.dart -------------------------------------------------------------------------------- /lib/features/receive/state/receive_scan_start.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/receive/state/receive_scan_start.dart -------------------------------------------------------------------------------- /lib/features/receive/view/receive_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/receive/view/receive_page.dart -------------------------------------------------------------------------------- /lib/features/receive/view/receive_state_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/receive/view/receive_state_page.dart -------------------------------------------------------------------------------- /lib/features/receive/view/widget/connect_btn.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/receive/view/widget/connect_btn.dart -------------------------------------------------------------------------------- /lib/features/send/controller/notifier/send_state_notifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/send/controller/notifier/send_state_notifier.dart -------------------------------------------------------------------------------- /lib/features/send/controller/send_notifier_pod.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/send/controller/send_notifier_pod.dart -------------------------------------------------------------------------------- /lib/features/send/state/send_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/send/state/send_state.dart -------------------------------------------------------------------------------- /lib/features/send/view/send_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/send/view/send_page.dart -------------------------------------------------------------------------------- /lib/features/send/view/send_state_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/send/view/send_state_page.dart -------------------------------------------------------------------------------- /lib/features/send/view/ui_state/started_server_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/send/view/ui_state/started_server_view.dart -------------------------------------------------------------------------------- /lib/features/send/view/ui_state/starting_server_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/send/view/ui_state/starting_server_view.dart -------------------------------------------------------------------------------- /lib/features/send/view/widgets/action_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/send/view/widgets/action_dialog.dart -------------------------------------------------------------------------------- /lib/features/send/view/widgets/files_bottomsheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/send/view/widgets/files_bottomsheet.dart -------------------------------------------------------------------------------- /lib/features/send/view/widgets/send_actions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/send/view/widgets/send_actions.dart -------------------------------------------------------------------------------- /lib/features/send/view/widgets/server_info_box.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/send/view/widgets/server_info_box.dart -------------------------------------------------------------------------------- /lib/features/send/view/widgets/share_on_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/send/view/widgets/share_on_web.dart -------------------------------------------------------------------------------- /lib/features/settings/controller/current_version_pod.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/settings/controller/current_version_pod.dart -------------------------------------------------------------------------------- /lib/features/settings/view/settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/settings/view/settings_page.dart -------------------------------------------------------------------------------- /lib/features/settings/view/widget/about_app_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/settings/view/widget/about_app_tile.dart -------------------------------------------------------------------------------- /lib/features/theme_segmented_btn/controller/selection_theme_pod.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/theme_segmented_btn/controller/selection_theme_pod.dart -------------------------------------------------------------------------------- /lib/features/theme_segmented_btn/view/theme_segmented_btn.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/theme_segmented_btn/view/theme_segmented_btn.dart -------------------------------------------------------------------------------- /lib/features/update_app_version/controller/check_update_available.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/update_app_version/controller/check_update_available.dart -------------------------------------------------------------------------------- /lib/features/update_app_version/controller/check_update_version.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/update_app_version/controller/check_update_version.dart -------------------------------------------------------------------------------- /lib/features/update_app_version/controller/get_changelog_pod.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/update_app_version/controller/get_changelog_pod.dart -------------------------------------------------------------------------------- /lib/features/update_app_version/view/changelog_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/update_app_version/view/changelog_page.dart -------------------------------------------------------------------------------- /lib/features/update_app_version/view/update_app_version_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/update_app_version/view/update_app_version_icon.dart -------------------------------------------------------------------------------- /lib/features/update_app_version/view/widgets/animated_sync.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/features/update_app_version/view/widgets/animated_sync.dart -------------------------------------------------------------------------------- /lib/init.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/init.dart -------------------------------------------------------------------------------- /lib/l10n/arb/app_en.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/l10n/arb/app_en.arb -------------------------------------------------------------------------------- /lib/l10n/arb/app_es.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/l10n/arb/app_es.arb -------------------------------------------------------------------------------- /lib/l10n/arb/app_or.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/l10n/arb/app_or.arb -------------------------------------------------------------------------------- /lib/l10n/l10n.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/l10n/l10n.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/main_development.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/main_development.dart -------------------------------------------------------------------------------- /lib/main_production.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/main_production.dart -------------------------------------------------------------------------------- /lib/main_staging.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/main_staging.dart -------------------------------------------------------------------------------- /lib/shared/api_client/dio/bad_certificate_fixer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/shared/api_client/dio/bad_certificate_fixer.dart -------------------------------------------------------------------------------- /lib/shared/api_client/dio/default_api_error_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/shared/api_client/dio/default_api_error_handler.dart -------------------------------------------------------------------------------- /lib/shared/api_client/dio/default_api_interceptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/shared/api_client/dio/default_api_interceptor.dart -------------------------------------------------------------------------------- /lib/shared/api_client/dio/default_time_response_interceptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/shared/api_client/dio/default_time_response_interceptor.dart -------------------------------------------------------------------------------- /lib/shared/api_client/dio/dio_client_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/shared/api_client/dio/dio_client_provider.dart -------------------------------------------------------------------------------- /lib/shared/api_client/dio/form_data_interceptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/shared/api_client/dio/form_data_interceptor.dart -------------------------------------------------------------------------------- /lib/shared/exception/base_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/shared/exception/base_exception.dart -------------------------------------------------------------------------------- /lib/shared/helper/file_list_html_render.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/shared/helper/file_list_html_render.dart -------------------------------------------------------------------------------- /lib/shared/helper/global_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/shared/helper/global_helper.dart -------------------------------------------------------------------------------- /lib/shared/helper/network_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/shared/helper/network_helper.dart -------------------------------------------------------------------------------- /lib/shared/helper/range_downloader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/shared/helper/range_downloader.dart -------------------------------------------------------------------------------- /lib/shared/helper/version.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/shared/helper/version.dart -------------------------------------------------------------------------------- /lib/shared/pods/internet_checker_pod.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/shared/pods/internet_checker_pod.dart -------------------------------------------------------------------------------- /lib/shared/pods/locale_pod.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/shared/pods/locale_pod.dart -------------------------------------------------------------------------------- /lib/shared/riverpod_ext/asynvalue_easy_when.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/shared/riverpod_ext/asynvalue_easy_when.dart -------------------------------------------------------------------------------- /lib/shared/riverpod_ext/cache_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/shared/riverpod_ext/cache_extensions.dart -------------------------------------------------------------------------------- /lib/shared/riverpod_ext/cancel_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/shared/riverpod_ext/cancel_extensions.dart -------------------------------------------------------------------------------- /lib/shared/riverpod_ext/riverpod_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/shared/riverpod_ext/riverpod_extensions.dart -------------------------------------------------------------------------------- /lib/shared/riverpod_ext/riverpod_observer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/shared/riverpod_ext/riverpod_observer.dart -------------------------------------------------------------------------------- /lib/shared/widget/app_locale_popup.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/shared/widget/app_locale_popup.dart -------------------------------------------------------------------------------- /lib/shared/widget/app_logo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/shared/widget/app_logo.dart -------------------------------------------------------------------------------- /lib/shared/widget/custom_app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/shared/widget/custom_app_bar.dart -------------------------------------------------------------------------------- /lib/shared/widget/no_internet_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/shared/widget/no_internet_widget.dart -------------------------------------------------------------------------------- /lib/shared/widget/os_logo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/shared/widget/os_logo.dart -------------------------------------------------------------------------------- /lib/shared/widget/responsive_wrapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/shared/widget/responsive_wrapper.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/dart/guard.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/dart/guard.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/dart/language.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/dart/language.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/dart/rest.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/dart/rest.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/dart/timeline.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/dart/timeline.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/extensions/bool_ext.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/extensions/bool_ext.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/extensions/box_constraints_ext.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/extensions/box_constraints_ext.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/extensions/context_ext.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/extensions/context_ext.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/extensions/date_time_ext.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/extensions/date_time_ext.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/extensions/iterable_ext.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/extensions/iterable_ext.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/extensions/list_ext.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/extensions/list_ext.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/extensions/misc_ext.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/extensions/misc_ext.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/extensions/num_ext.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/extensions/num_ext.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/extensions/string_ext.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/extensions/string_ext.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/extensions/web3_ext.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/extensions/web3_ext.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/animated/animated_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/animated/animated_container.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/animated/animated_height.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/animated/animated_height.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/badge.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/badge.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/bottom_sheet.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/builder.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/card.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/center.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/center.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/clippers/vx_arc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/clippers/vx_arc.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/clippers/vx_diagonal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/clippers/vx_diagonal.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/clippers/vx_half.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/clippers/vx_half.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/common/velocity_conditional.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/common/velocity_conditional.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/common/velocity_curve.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/common/velocity_curve.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/common/velocity_ensure_visible.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/common/velocity_ensure_visible.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/common/velocity_responsive.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/common/velocity_responsive.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/common/velocity_round.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/common/velocity_round.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/common/velocity_two.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/common/velocity_two.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/common/velocity_zero.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/common/velocity_zero.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/container.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/dark_mode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/dark_mode.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/dash.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/dash.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/dialog.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/divider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/divider.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/drawer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/drawer.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/drop_down_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/drop_down_button.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/filters.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/filters.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/flex.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/flex.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/gesture.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/gesture.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/glass.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/glass.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/hover.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/hover.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/icon.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/json.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/json.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/list.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/marquee.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/marquee.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/misc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/misc.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/navigation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/navigation.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/nothing.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/nothing.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/object.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/object.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/opacity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/opacity.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/padding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/padding.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/pinview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/pinview.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/platforms.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/platforms.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/popup_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/popup_menu.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/preview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/preview.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/random.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/random.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/rating.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/rating.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/rich_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/rich_text.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/routes.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/scroll.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/scroll.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/selectable_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/selectable_text.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/shapes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/shapes.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/shift.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/shift.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/shimmer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/shimmer.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/sizedbox.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/sizedbox.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/skeleton.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/skeleton.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/stepper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/stepper.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/swiper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/swiper.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/switcher.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/switcher.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/table.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/table.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/text.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/textfield.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/textfield.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/theme.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/timeline/timeline_painter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/timeline/timeline_painter.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/timeline/timeline_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/timeline/timeline_view.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/timeline/timeline_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/timeline/timeline_widget.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/toast.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/toast.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/transform.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/transform.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/universal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/universal.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/velocityx_mixins/alignment_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/velocityx_mixins/alignment_mixin.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/velocityx_mixins/color_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/velocityx_mixins/color_mixin.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/velocityx_mixins/curves_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/velocityx_mixins/curves_mixin.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/velocityx_mixins/duration_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/velocityx_mixins/duration_mixin.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/velocityx_mixins/gradient_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/velocityx_mixins/gradient_mixin.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/velocityx_mixins/neu_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/velocityx_mixins/neu_mixin.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/velocityx_mixins/padding_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/velocityx_mixins/padding_mixin.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/velocityx_mixins/render_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/velocityx_mixins/render_mixin.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/velocityx_mixins/round_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/velocityx_mixins/round_mixin.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/velocityx_mixins/shadow_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/velocityx_mixins/shadow_mixin.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/flutter/widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/flutter/widgets.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/nav/i_vx_nav.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/nav/i_vx_nav.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/nav/vx_nav.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/nav/vx_nav.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/nav/vx_nav_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/nav/vx_nav_web.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/responsive_ui.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/responsive_ui.dart -------------------------------------------------------------------------------- /lib/velocity_x/src/velocity_xx.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/src/velocity_xx.dart -------------------------------------------------------------------------------- /lib/velocity_x/velocity_x.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/lib/velocity_x/velocity_x.dart -------------------------------------------------------------------------------- /linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/linux/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/linux/main.cc -------------------------------------------------------------------------------- /linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/linux/my_application.cc -------------------------------------------------------------------------------- /linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/linux/my_application.h -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/macos/.gitignore -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/macos/Podfile -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/macos/Runner/Info.plist -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /riverpod_simple_architecture.md: -------------------------------------------------------------------------------- 1 | Hello flutter_sharez! 2 | Made using riverpod_simple_architecture. -------------------------------------------------------------------------------- /screenshot/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/screenshot/1.png -------------------------------------------------------------------------------- /screenshot/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/screenshot/10.png -------------------------------------------------------------------------------- /screenshot/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/screenshot/11.png -------------------------------------------------------------------------------- /screenshot/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/screenshot/12.png -------------------------------------------------------------------------------- /screenshot/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/screenshot/13.png -------------------------------------------------------------------------------- /screenshot/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/screenshot/14.png -------------------------------------------------------------------------------- /screenshot/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/screenshot/15.png -------------------------------------------------------------------------------- /screenshot/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/screenshot/16.png -------------------------------------------------------------------------------- /screenshot/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/screenshot/17.png -------------------------------------------------------------------------------- /screenshot/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/screenshot/2.png -------------------------------------------------------------------------------- /screenshot/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/screenshot/3.png -------------------------------------------------------------------------------- /screenshot/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/screenshot/4.png -------------------------------------------------------------------------------- /screenshot/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/screenshot/5.png -------------------------------------------------------------------------------- /screenshot/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/screenshot/6.png -------------------------------------------------------------------------------- /screenshot/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/screenshot/7.png -------------------------------------------------------------------------------- /screenshot/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/screenshot/8.png -------------------------------------------------------------------------------- /screenshot/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/screenshot/9.png -------------------------------------------------------------------------------- /test/app/view/app_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/test/app/view/app_test.dart -------------------------------------------------------------------------------- /test/core/storage/app_storage_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/test/core/storage/app_storage_test.dart -------------------------------------------------------------------------------- /test/core/theme/theme_controller_pod_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/test/core/theme/theme_controller_pod_test.dart -------------------------------------------------------------------------------- /test/features/counter/pod/counter_pod_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/test/features/counter/pod/counter_pod_test.dart -------------------------------------------------------------------------------- /test/features/counter/view/counter_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/test/features/counter/view/counter_page_test.dart -------------------------------------------------------------------------------- /test/features/theme_segment_btn/view/theme_segment_btn_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/test/features/theme_segment_btn/view/theme_segment_btn_test.dart -------------------------------------------------------------------------------- /test/helpers/helpers.dart: -------------------------------------------------------------------------------- 1 | export 'pump_app.dart'; 2 | -------------------------------------------------------------------------------- /test/helpers/pump_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/test/helpers/pump_app.dart -------------------------------------------------------------------------------- /test/init_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/test/init_test.dart -------------------------------------------------------------------------------- /test/shared/api_client/dio/dio_client_provider_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/test/shared/api_client/dio/dio_client_provider_test.dart -------------------------------------------------------------------------------- /test/shared/exception/exception_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/test/shared/exception/exception_test.dart -------------------------------------------------------------------------------- /test/shared/pods/internet_checker_pod_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/test/shared/pods/internet_checker_pod_test.dart -------------------------------------------------------------------------------- /test/shared/pods/locale_pod_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/test/shared/pods/locale_pod_test.dart -------------------------------------------------------------------------------- /test/shared/riverpod_ext/asynvalue_easywhen_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/test/shared/riverpod_ext/asynvalue_easywhen_test.dart -------------------------------------------------------------------------------- /test/shared/riverpod_ext/cache_extension_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/test/shared/riverpod_ext/cache_extension_test.dart -------------------------------------------------------------------------------- /test/shared/widgets/app_locale_popup_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/test/shared/widgets/app_locale_popup_test.dart -------------------------------------------------------------------------------- /test/shared/widgets/no_interenet_widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/test/shared/widgets/no_interenet_widget_test.dart -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- 1 | void main() {} 2 | -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/web/manifest.json -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/windows/runner/Runner.rc -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/windows/runner/main.cpp -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/windows/runner/resource.h -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/windows/runner/utils.cpp -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/windows/runner/utils.h -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/88-degrees/file-sharing/HEAD/windows/runner/win32_window.h --------------------------------------------------------------------------------