├── .github └── workflows │ ├── pr_check.yml │ └── publish.yml ├── .gitignore ├── .metadata ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── TODO ├── analysis_options.yaml ├── example ├── .gitignore ├── .metadata ├── .vscode │ └── launch.json ├── README.md ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── example │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Podfile.lock │ ├── 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 ├── lib │ ├── generated_plugin_registrant.dart │ ├── json_place_holder │ │ ├── json_place_holder.dart │ │ ├── json_place_holder_view.dart │ │ ├── json_place_holder_view_model.dart │ │ └── model │ │ │ └── post.dart │ └── main.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 ├── pubspec.lock ├── pubspec.yaml ├── 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 ├── lib ├── src │ ├── cache │ │ ├── file │ │ │ ├── file.dart │ │ │ ├── local_file.dart │ │ │ ├── local_file_io.dart │ │ │ └── local_file_web.dart │ │ └── shared │ │ │ ├── local_preferences.dart │ │ │ └── preferences.dart │ ├── feature │ │ ├── adapter │ │ │ ├── native_adapter.dart │ │ │ └── web_adapter.dart │ │ ├── logger │ │ │ ├── logger_io.dart │ │ │ └── logger_web.dart │ │ ├── network_check │ │ │ └── network_check.dart │ │ ├── no_network │ │ │ ├── index.dart │ │ │ ├── no_network.dart │ │ │ ├── no_network_manager.dart │ │ │ └── widget │ │ │ │ └── no_network_widget.dart │ │ ├── path │ │ │ ├── custom_path_provider.dart │ │ │ ├── html_path_provider.dart │ │ │ └── io_path_provider.dart │ │ └── ssl │ │ │ ├── html_custom_override.dart │ │ │ ├── http_custom_override.dart │ │ │ └── io_custom_override.dart │ ├── interface │ │ ├── i_error_model.dart │ │ ├── i_file_manager.dart │ │ ├── i_form_data_model.dart │ │ ├── i_network_manager.dart │ │ ├── i_network_model.dart │ │ ├── i_response_model.dart │ │ └── index.dart │ ├── mixin │ │ ├── core │ │ │ └── network_manager_initialize.dart │ │ ├── index.dart │ │ ├── network_manager_cache.dart │ │ ├── network_manager_core_operation.dart │ │ ├── network_manager_error_interceptor.dart │ │ ├── network_manager_header.dart │ │ ├── network_manager_parameters.dart │ │ └── network_manager_response.dart │ ├── model │ │ ├── empty_model.dart │ │ ├── enum │ │ │ └── request_type.dart │ │ ├── error │ │ │ └── file_manager_not_foud_exception.dart │ │ ├── error_model.dart │ │ ├── index.dart │ │ ├── local_data.dart │ │ ├── network_result.dart │ │ └── response_model.dart │ ├── network_manager.dart │ └── utility │ │ ├── custom_logger.dart │ │ ├── extension │ │ └── request_type_extension.dart │ │ ├── index.dart │ │ ├── json_encode_util.dart │ │ ├── logger │ │ └── log_items.dart │ │ └── network_manager_util.dart └── vexana.dart ├── pubspec.lock ├── pubspec.yaml ├── script ├── push_version.sh └── remove_version.sh ├── scripts └── code_coverage.sh └── test ├── feature ├── authorize_test │ └── non_auth_test.dart ├── cache-test │ ├── cache_test.dart │ └── mock_path.dart ├── dog │ └── http_dog_test.dart ├── file-download │ ├── file_download_model.dart │ └── file_download_test.dart ├── json_place_holder │ ├── json_place_test.dart │ └── todo.dart ├── refresh-token │ ├── credential.dart │ ├── refresh_user_token_test.dart │ └── user.dart └── reqres │ ├── req_res_model.dart │ └── req_res_test.dart ├── unit ├── cache │ ├── file_manager_test.dart │ └── preferences_manager_test.dart ├── common │ ├── index.dart │ ├── mock_context.dart │ ├── mock_exception.dart │ ├── mock_models.dart │ ├── mock_network_manager.dart │ ├── mock_parameters.dart │ └── mock_response_parse.dart ├── feature │ ├── io_http_ovveride_test.dart │ ├── json_decode_test.dart │ ├── log_item_test.dart │ ├── network_check_test.dart │ └── request_type_extension_test.dart ├── model │ ├── custom_exception_test.dart │ ├── empty_model_test.dart │ ├── error_model_test.dart │ ├── form_data_model_test.dart │ └── network_manager_paramater_test.dart ├── network_manager_error_test.dart ├── network_manager_header_test.dart ├── network_manager_parse_test.dart ├── network_manager_send_request_test.dart └── network_manager_test.dart ├── utils └── utils.dart └── widget └── no_network_widget_test.dart /.github/workflows/pr_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/.github/workflows/pr_check.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/.metadata -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/TODO -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/.metadata -------------------------------------------------------------------------------- /example/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/.vscode/launch.json -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/README.md -------------------------------------------------------------------------------- /example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/analysis_options.yaml -------------------------------------------------------------------------------- /example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/android/.gitignore -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/kotlin/com/example/example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/android/app/src/main/kotlin/com/example/example/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/.gitignore -------------------------------------------------------------------------------- /example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /example/lib/generated_plugin_registrant.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/lib/generated_plugin_registrant.dart -------------------------------------------------------------------------------- /example/lib/json_place_holder/json_place_holder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/lib/json_place_holder/json_place_holder.dart -------------------------------------------------------------------------------- /example/lib/json_place_holder/json_place_holder_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/lib/json_place_holder/json_place_holder_view.dart -------------------------------------------------------------------------------- /example/lib/json_place_holder/json_place_holder_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/lib/json_place_holder/json_place_holder_view_model.dart -------------------------------------------------------------------------------- /example/lib/json_place_holder/model/post.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/lib/json_place_holder/model/post.dart -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /example/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/linux/CMakeLists.txt -------------------------------------------------------------------------------- /example/linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /example/linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /example/linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /example/linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /example/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/linux/main.cc -------------------------------------------------------------------------------- /example/linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/linux/my_application.cc -------------------------------------------------------------------------------- /example/linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/linux/my_application.h -------------------------------------------------------------------------------- /example/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/macos/.gitignore -------------------------------------------------------------------------------- /example/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /example/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /example/macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /example/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/macos/Podfile -------------------------------------------------------------------------------- /example/macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example/macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /example/macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /example/macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /example/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /example/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /example/macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /example/macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /example/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/macos/Runner/Info.plist -------------------------------------------------------------------------------- /example/macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /example/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /example/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/pubspec.lock -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /example/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/web/favicon.png -------------------------------------------------------------------------------- /example/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/web/icons/Icon-192.png -------------------------------------------------------------------------------- /example/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/web/icons/Icon-512.png -------------------------------------------------------------------------------- /example/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /example/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /example/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/web/index.html -------------------------------------------------------------------------------- /example/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/web/manifest.json -------------------------------------------------------------------------------- /example/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/windows/.gitignore -------------------------------------------------------------------------------- /example/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/windows/CMakeLists.txt -------------------------------------------------------------------------------- /example/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /example/windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /example/windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /example/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /example/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /example/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/windows/runner/Runner.rc -------------------------------------------------------------------------------- /example/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /example/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /example/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/windows/runner/main.cpp -------------------------------------------------------------------------------- /example/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/windows/runner/resource.h -------------------------------------------------------------------------------- /example/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /example/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /example/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/windows/runner/utils.cpp -------------------------------------------------------------------------------- /example/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/windows/runner/utils.h -------------------------------------------------------------------------------- /example/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /example/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/example/windows/runner/win32_window.h -------------------------------------------------------------------------------- /lib/src/cache/file/file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/cache/file/file.dart -------------------------------------------------------------------------------- /lib/src/cache/file/local_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/cache/file/local_file.dart -------------------------------------------------------------------------------- /lib/src/cache/file/local_file_io.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/cache/file/local_file_io.dart -------------------------------------------------------------------------------- /lib/src/cache/file/local_file_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/cache/file/local_file_web.dart -------------------------------------------------------------------------------- /lib/src/cache/shared/local_preferences.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/cache/shared/local_preferences.dart -------------------------------------------------------------------------------- /lib/src/cache/shared/preferences.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/cache/shared/preferences.dart -------------------------------------------------------------------------------- /lib/src/feature/adapter/native_adapter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/feature/adapter/native_adapter.dart -------------------------------------------------------------------------------- /lib/src/feature/adapter/web_adapter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/feature/adapter/web_adapter.dart -------------------------------------------------------------------------------- /lib/src/feature/logger/logger_io.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/feature/logger/logger_io.dart -------------------------------------------------------------------------------- /lib/src/feature/logger/logger_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/feature/logger/logger_web.dart -------------------------------------------------------------------------------- /lib/src/feature/network_check/network_check.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/feature/network_check/network_check.dart -------------------------------------------------------------------------------- /lib/src/feature/no_network/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/feature/no_network/index.dart -------------------------------------------------------------------------------- /lib/src/feature/no_network/no_network.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/feature/no_network/no_network.dart -------------------------------------------------------------------------------- /lib/src/feature/no_network/no_network_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/feature/no_network/no_network_manager.dart -------------------------------------------------------------------------------- /lib/src/feature/no_network/widget/no_network_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/feature/no_network/widget/no_network_widget.dart -------------------------------------------------------------------------------- /lib/src/feature/path/custom_path_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/feature/path/custom_path_provider.dart -------------------------------------------------------------------------------- /lib/src/feature/path/html_path_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/feature/path/html_path_provider.dart -------------------------------------------------------------------------------- /lib/src/feature/path/io_path_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/feature/path/io_path_provider.dart -------------------------------------------------------------------------------- /lib/src/feature/ssl/html_custom_override.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/feature/ssl/html_custom_override.dart -------------------------------------------------------------------------------- /lib/src/feature/ssl/http_custom_override.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/feature/ssl/http_custom_override.dart -------------------------------------------------------------------------------- /lib/src/feature/ssl/io_custom_override.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/feature/ssl/io_custom_override.dart -------------------------------------------------------------------------------- /lib/src/interface/i_error_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/interface/i_error_model.dart -------------------------------------------------------------------------------- /lib/src/interface/i_file_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/interface/i_file_manager.dart -------------------------------------------------------------------------------- /lib/src/interface/i_form_data_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/interface/i_form_data_model.dart -------------------------------------------------------------------------------- /lib/src/interface/i_network_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/interface/i_network_manager.dart -------------------------------------------------------------------------------- /lib/src/interface/i_network_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/interface/i_network_model.dart -------------------------------------------------------------------------------- /lib/src/interface/i_response_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/interface/i_response_model.dart -------------------------------------------------------------------------------- /lib/src/interface/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/interface/index.dart -------------------------------------------------------------------------------- /lib/src/mixin/core/network_manager_initialize.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/mixin/core/network_manager_initialize.dart -------------------------------------------------------------------------------- /lib/src/mixin/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/mixin/index.dart -------------------------------------------------------------------------------- /lib/src/mixin/network_manager_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/mixin/network_manager_cache.dart -------------------------------------------------------------------------------- /lib/src/mixin/network_manager_core_operation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/mixin/network_manager_core_operation.dart -------------------------------------------------------------------------------- /lib/src/mixin/network_manager_error_interceptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/mixin/network_manager_error_interceptor.dart -------------------------------------------------------------------------------- /lib/src/mixin/network_manager_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/mixin/network_manager_header.dart -------------------------------------------------------------------------------- /lib/src/mixin/network_manager_parameters.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/mixin/network_manager_parameters.dart -------------------------------------------------------------------------------- /lib/src/mixin/network_manager_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/mixin/network_manager_response.dart -------------------------------------------------------------------------------- /lib/src/model/empty_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/model/empty_model.dart -------------------------------------------------------------------------------- /lib/src/model/enum/request_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/model/enum/request_type.dart -------------------------------------------------------------------------------- /lib/src/model/error/file_manager_not_foud_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/model/error/file_manager_not_foud_exception.dart -------------------------------------------------------------------------------- /lib/src/model/error_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/model/error_model.dart -------------------------------------------------------------------------------- /lib/src/model/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/model/index.dart -------------------------------------------------------------------------------- /lib/src/model/local_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/model/local_data.dart -------------------------------------------------------------------------------- /lib/src/model/network_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/model/network_result.dart -------------------------------------------------------------------------------- /lib/src/model/response_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/model/response_model.dart -------------------------------------------------------------------------------- /lib/src/network_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/network_manager.dart -------------------------------------------------------------------------------- /lib/src/utility/custom_logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/utility/custom_logger.dart -------------------------------------------------------------------------------- /lib/src/utility/extension/request_type_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/utility/extension/request_type_extension.dart -------------------------------------------------------------------------------- /lib/src/utility/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/utility/index.dart -------------------------------------------------------------------------------- /lib/src/utility/json_encode_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/utility/json_encode_util.dart -------------------------------------------------------------------------------- /lib/src/utility/logger/log_items.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/utility/logger/log_items.dart -------------------------------------------------------------------------------- /lib/src/utility/network_manager_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/src/utility/network_manager_util.dart -------------------------------------------------------------------------------- /lib/vexana.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/lib/vexana.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /script/push_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/script/push_version.sh -------------------------------------------------------------------------------- /script/remove_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/script/remove_version.sh -------------------------------------------------------------------------------- /scripts/code_coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/scripts/code_coverage.sh -------------------------------------------------------------------------------- /test/feature/authorize_test/non_auth_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/feature/authorize_test/non_auth_test.dart -------------------------------------------------------------------------------- /test/feature/cache-test/cache_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/feature/cache-test/cache_test.dart -------------------------------------------------------------------------------- /test/feature/cache-test/mock_path.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/feature/cache-test/mock_path.dart -------------------------------------------------------------------------------- /test/feature/dog/http_dog_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/feature/dog/http_dog_test.dart -------------------------------------------------------------------------------- /test/feature/file-download/file_download_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/feature/file-download/file_download_model.dart -------------------------------------------------------------------------------- /test/feature/file-download/file_download_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/feature/file-download/file_download_test.dart -------------------------------------------------------------------------------- /test/feature/json_place_holder/json_place_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/feature/json_place_holder/json_place_test.dart -------------------------------------------------------------------------------- /test/feature/json_place_holder/todo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/feature/json_place_holder/todo.dart -------------------------------------------------------------------------------- /test/feature/refresh-token/credential.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/feature/refresh-token/credential.dart -------------------------------------------------------------------------------- /test/feature/refresh-token/refresh_user_token_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/feature/refresh-token/refresh_user_token_test.dart -------------------------------------------------------------------------------- /test/feature/refresh-token/user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/feature/refresh-token/user.dart -------------------------------------------------------------------------------- /test/feature/reqres/req_res_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/feature/reqres/req_res_model.dart -------------------------------------------------------------------------------- /test/feature/reqres/req_res_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/feature/reqres/req_res_test.dart -------------------------------------------------------------------------------- /test/unit/cache/file_manager_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/unit/cache/file_manager_test.dart -------------------------------------------------------------------------------- /test/unit/cache/preferences_manager_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/unit/cache/preferences_manager_test.dart -------------------------------------------------------------------------------- /test/unit/common/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/unit/common/index.dart -------------------------------------------------------------------------------- /test/unit/common/mock_context.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/unit/common/mock_context.dart -------------------------------------------------------------------------------- /test/unit/common/mock_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/unit/common/mock_exception.dart -------------------------------------------------------------------------------- /test/unit/common/mock_models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/unit/common/mock_models.dart -------------------------------------------------------------------------------- /test/unit/common/mock_network_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/unit/common/mock_network_manager.dart -------------------------------------------------------------------------------- /test/unit/common/mock_parameters.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/unit/common/mock_parameters.dart -------------------------------------------------------------------------------- /test/unit/common/mock_response_parse.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/unit/common/mock_response_parse.dart -------------------------------------------------------------------------------- /test/unit/feature/io_http_ovveride_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/unit/feature/io_http_ovveride_test.dart -------------------------------------------------------------------------------- /test/unit/feature/json_decode_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/unit/feature/json_decode_test.dart -------------------------------------------------------------------------------- /test/unit/feature/log_item_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/unit/feature/log_item_test.dart -------------------------------------------------------------------------------- /test/unit/feature/network_check_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/unit/feature/network_check_test.dart -------------------------------------------------------------------------------- /test/unit/feature/request_type_extension_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/unit/feature/request_type_extension_test.dart -------------------------------------------------------------------------------- /test/unit/model/custom_exception_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/unit/model/custom_exception_test.dart -------------------------------------------------------------------------------- /test/unit/model/empty_model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/unit/model/empty_model_test.dart -------------------------------------------------------------------------------- /test/unit/model/error_model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/unit/model/error_model_test.dart -------------------------------------------------------------------------------- /test/unit/model/form_data_model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/unit/model/form_data_model_test.dart -------------------------------------------------------------------------------- /test/unit/model/network_manager_paramater_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/unit/model/network_manager_paramater_test.dart -------------------------------------------------------------------------------- /test/unit/network_manager_error_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/unit/network_manager_error_test.dart -------------------------------------------------------------------------------- /test/unit/network_manager_header_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/unit/network_manager_header_test.dart -------------------------------------------------------------------------------- /test/unit/network_manager_parse_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/unit/network_manager_parse_test.dart -------------------------------------------------------------------------------- /test/unit/network_manager_send_request_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/unit/network_manager_send_request_test.dart -------------------------------------------------------------------------------- /test/unit/network_manager_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/unit/network_manager_test.dart -------------------------------------------------------------------------------- /test/utils/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/utils/utils.dart -------------------------------------------------------------------------------- /test/widget/no_network_widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/vexana/HEAD/test/widget/no_network_widget_test.dart --------------------------------------------------------------------------------