├── .all-contributorsrc ├── .changeset ├── README.md └── config.json ├── .github └── workflows │ ├── dart.yml │ ├── deploy_web.yml │ └── publish.yml ├── .gitignore ├── .npmrc ├── .prettierrc.json ├── .run ├── Vyuh Demo.run.xml └── Vyuh Studio.run.xml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── _images ├── example-conference.png ├── example-counter.png ├── example-food.png ├── example-misc.png ├── example-puzzle.png ├── example-settings.png ├── example-tmdb.png ├── example-unsplash.png ├── example-wonderous.png └── logo.png ├── analysis_options.yaml ├── apps ├── content_explorer │ ├── .env │ ├── .gitignore │ ├── README.md │ ├── lib │ │ └── main.dart │ ├── 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.yaml │ └── web │ │ ├── favicon.png │ │ ├── icons │ │ ├── Icon-192.png │ │ ├── Icon-512.png │ │ ├── Icon-maskable-192.png │ │ └── Icon-maskable-512.png │ │ ├── index.html │ │ └── manifest.json ├── content_widget_demo │ ├── .gitignore │ ├── README.md │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── content_widget_demo │ │ │ │ │ │ └── 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 │ │ ├── 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 │ ├── lib │ │ ├── example.dart │ │ ├── examples │ │ │ ├── conferences.dart │ │ │ ├── custom_widget.dart │ │ │ ├── hello_world.dart │ │ │ └── route.dart │ │ └── main.dart │ ├── pubspec.yaml │ ├── test │ │ └── 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 ├── demo-studio │ ├── .eslintrc │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── sanity.cli.ts │ ├── sanity.config.ts │ ├── scripts │ │ └── sanity-script.ts │ ├── static │ │ └── .gitkeep │ └── tsconfig.json └── vyuh_demo │ ├── .gitignore │ ├── README.md │ ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ ├── google-services.json │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── run │ │ │ │ │ └── vyuh │ │ │ │ │ └── vyuh_demo │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-mdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-v21 │ │ │ │ ├── background.png │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable-xhdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ └── splash.png │ │ │ │ ├── drawable │ │ │ │ ├── background.png │ │ │ │ └── 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-v31 │ │ │ │ └── styles.xml │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ ├── values-v31 │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle │ ├── assets │ ├── app-icon.png │ ├── launchscreen-image.png │ └── routes │ │ └── _tab1.json │ ├── 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-50x50@1x.png │ │ │ │ ├── Icon-App-50x50@2x.png │ │ │ │ ├── Icon-App-57x57@1x.png │ │ │ │ ├── Icon-App-57x57@2x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-72x72@1x.png │ │ │ │ ├── Icon-App-72x72@2x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ ├── LaunchBackground.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── background.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 │ └── fastlane │ │ ├── Appfile │ │ ├── Fastfile │ │ └── README.md │ ├── lib │ ├── main.dart │ └── root_feature.dart │ ├── mockoon.json │ ├── pubspec.yaml │ ├── test │ └── 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 │ └── splash │ └── img │ ├── dark-1x.png │ ├── dark-2x.png │ ├── dark-3x.png │ ├── dark-4x.png │ ├── light-1x.png │ ├── light-2x.png │ ├── light-3x.png │ └── light-4x.png ├── examples ├── conference │ ├── feature_conference │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.yaml │ │ ├── lib │ │ │ ├── api │ │ │ │ └── conference_api.dart │ │ │ ├── content │ │ │ │ ├── conference.dart │ │ │ │ ├── conference.g.dart │ │ │ │ ├── edition.dart │ │ │ │ ├── edition.g.dart │ │ │ │ ├── room.dart │ │ │ │ ├── room.g.dart │ │ │ │ ├── schedule.dart │ │ │ │ ├── schedule.g.dart │ │ │ │ ├── session.dart │ │ │ │ ├── session.g.dart │ │ │ │ ├── speaker.dart │ │ │ │ ├── speaker.g.dart │ │ │ │ ├── sponsor.dart │ │ │ │ ├── sponsor.g.dart │ │ │ │ ├── track.dart │ │ │ │ ├── track.g.dart │ │ │ │ ├── venue.dart │ │ │ │ └── venue.g.dart │ │ │ ├── feature.dart │ │ │ ├── feature_conference.dart │ │ │ ├── layouts │ │ │ │ ├── conference_card_layout.dart │ │ │ │ ├── conference_card_layout.g.dart │ │ │ │ ├── conference_layout.dart │ │ │ │ ├── conference_layout.g.dart │ │ │ │ ├── edition_layout.dart │ │ │ │ ├── edition_layout.g.dart │ │ │ │ ├── edition_summary_layout.dart │ │ │ │ ├── edition_summary_layout.g.dart │ │ │ │ ├── room_layout.dart │ │ │ │ ├── session_layout.dart │ │ │ │ ├── session_layout.g.dart │ │ │ │ ├── session_summary_layout.dart │ │ │ │ ├── session_summary_layout.g.dart │ │ │ │ ├── speaker_chip_layout.dart │ │ │ │ ├── speaker_chip_layout.g.dart │ │ │ │ ├── speaker_layout.dart │ │ │ │ ├── speaker_layout.g.dart │ │ │ │ ├── sponsor_layout.dart │ │ │ │ ├── sponsor_layout.g.dart │ │ │ │ ├── track_chip_layout.dart │ │ │ │ ├── track_chip_layout.g.dart │ │ │ │ ├── track_layout.dart │ │ │ │ ├── track_layout.g.dart │ │ │ │ ├── venue_layout.dart │ │ │ │ └── venue_layout.g.dart │ │ │ ├── pages │ │ │ │ ├── conference_detail_page.dart │ │ │ │ ├── conference_root_page.dart │ │ │ │ ├── edition_detail_page.dart │ │ │ │ ├── edition_shell_page.dart │ │ │ │ ├── session_detail_page.dart │ │ │ │ ├── sessions_page.dart │ │ │ │ ├── speaker_detail_page.dart │ │ │ │ ├── speakers_page.dart │ │ │ │ ├── track_detail_page.dart │ │ │ │ └── tracks_page.dart │ │ │ ├── routes.dart │ │ │ ├── utils.dart │ │ │ └── widgets │ │ │ │ └── conference_route_scaffold.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ └── feature_conference_test.dart │ └── schema │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── RELATIONSHIPS.md │ │ ├── package.json │ │ ├── src │ │ ├── documents │ │ │ ├── conference.ts │ │ │ ├── edition.ts │ │ │ ├── session.ts │ │ │ ├── speaker.ts │ │ │ ├── sponsor.ts │ │ │ ├── track.ts │ │ │ └── venue.ts │ │ ├── index.ts │ │ └── objects │ │ │ ├── room.ts │ │ │ └── schedule.ts │ │ ├── tsconfig.json │ │ └── tsup.config.ts ├── feature_counter │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── build.yaml │ ├── lib │ │ ├── feature.dart │ │ └── feature_counter.dart │ ├── pubspec.yaml │ └── test │ │ └── feature_counter_test.dart ├── food │ ├── feature_food │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.yaml │ │ ├── lib │ │ │ ├── action │ │ │ │ ├── select_menu_item.dart │ │ │ │ └── select_menu_item.g.dart │ │ │ ├── api.dart │ │ │ ├── content │ │ │ │ ├── food_item.dart │ │ │ │ ├── food_item.g.dart │ │ │ │ ├── food_item_default_layout.dart │ │ │ │ ├── selected_food_item.dart │ │ │ │ └── selected_food_item.g.dart │ │ │ ├── feature.dart │ │ │ ├── feature_food.dart │ │ │ └── routes.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ └── feature_food_test.dart │ └── food │ │ ├── package.json │ │ ├── pnpm-lock.yaml │ │ ├── src │ │ ├── index.ts │ │ └── menu-item.ts │ │ └── tsconfig.json ├── misc │ ├── feature_misc │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.yaml │ │ ├── lib │ │ │ ├── action │ │ │ │ ├── show_barcode.dart │ │ │ │ └── show_barcode.g.dart │ │ │ ├── condition │ │ │ │ ├── part_of_day.dart │ │ │ │ └── part_of_day.g.dart │ │ │ ├── content │ │ │ │ ├── api │ │ │ │ │ ├── dummy_json_api_content.dart │ │ │ │ │ ├── dummy_json_api_content.g.dart │ │ │ │ │ ├── model.dart │ │ │ │ │ ├── model.g.dart │ │ │ │ │ └── widgets.dart │ │ │ │ ├── card_layout_di_store.dart │ │ │ │ ├── card_layout_di_store.g.dart │ │ │ │ ├── live_card.dart │ │ │ │ ├── live_card.g.dart │ │ │ │ ├── product │ │ │ │ │ ├── default_layout.dart │ │ │ │ │ ├── default_layout.g.dart │ │ │ │ │ ├── mini_view_layout.dart │ │ │ │ │ ├── mini_view_layout.g.dart │ │ │ │ │ ├── product_card.dart │ │ │ │ │ └── product_card.g.dart │ │ │ │ ├── score_card.dart │ │ │ │ └── score_card.g.dart │ │ │ ├── feature.dart │ │ │ ├── feature_misc.dart │ │ │ └── lifecycle_handlers │ │ │ │ ├── di_registration_lifecycle_handler.dart │ │ │ │ ├── di_registration_lifecycle_handler.g.dart │ │ │ │ ├── simulated_delay_lifecycle_handler.dart │ │ │ │ └── simulated_delay_lifecycle_handler.g.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ └── feature_misc_test.dart │ └── misc │ │ ├── .eslintrc.mjs │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── package.json │ │ ├── pnpm-lock.yaml │ │ ├── src │ │ ├── action │ │ │ └── show-barcode.ts │ │ ├── condition │ │ │ └── part-of-day.ts │ │ ├── content │ │ │ ├── diStore-card-layout.ts │ │ │ ├── dummy-json-api.ts │ │ │ ├── live-card.ts │ │ │ ├── missing.ts │ │ │ ├── product-card.ts │ │ │ └── score-card.ts │ │ ├── index.ts │ │ └── lifecycle-handlers │ │ │ ├── diRegistrationLifecycleHandler.ts │ │ │ └── simulatedDelayLifecycleHandler.ts │ │ ├── tsconfig.json │ │ └── tsup.config.ts ├── puzzles │ ├── feature_puzzles │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── assets │ │ │ ├── background.jpg │ │ │ ├── boat.png │ │ │ ├── clouds.jpg │ │ │ └── water.jpg │ │ ├── lib │ │ │ ├── action │ │ │ │ ├── select_level.dart │ │ │ │ └── select_level.g.dart │ │ │ ├── api │ │ │ │ ├── model │ │ │ │ │ ├── level.dart │ │ │ │ │ └── level.g.dart │ │ │ │ └── puzzles_client.dart │ │ │ ├── feature.dart │ │ │ ├── feature_puzzles.dart │ │ │ ├── routes.dart │ │ │ ├── ui │ │ │ │ ├── content │ │ │ │ │ ├── level_section.dart │ │ │ │ │ └── level_section.g.dart │ │ │ │ ├── layout │ │ │ │ │ ├── level_layout.dart │ │ │ │ │ └── level_layout.g.dart │ │ │ │ ├── loader │ │ │ │ │ └── level_loader.dart │ │ │ │ ├── river_level │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── dialogs.dart │ │ │ │ │ ├── river_engine.dart │ │ │ │ │ ├── river_level.dart │ │ │ │ │ ├── river_level_store.dart │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── boat_widget.dart │ │ │ │ │ │ ├── character_widget.dart │ │ │ │ │ │ ├── ground_widget.dart │ │ │ │ │ │ ├── level_play_widget.dart │ │ │ │ │ │ ├── menu_widget.dart │ │ │ │ │ │ ├── river_widget.dart │ │ │ │ │ │ └── start_level_widget.dart │ │ │ │ └── widgets │ │ │ │ │ ├── animated_heading_text.dart │ │ │ │ │ ├── puzzle_button.dart │ │ │ │ │ └── scale_effect_button.dart │ │ │ └── utils │ │ │ │ ├── constants.dart │ │ │ │ └── extensions.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ ├── routes_test.dart │ │ │ └── ui │ │ │ └── river_level │ │ │ └── river_engine_test.dart │ └── puzzles │ │ ├── package.json │ │ ├── pnpm-lock.yaml │ │ ├── src │ │ ├── index.ts │ │ ├── level-action.ts │ │ ├── level-layout.ts │ │ ├── puzzle.tsx │ │ └── section.ts │ │ └── tsconfig.json ├── settings │ ├── feature_settings │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── build.yaml │ │ ├── lib │ │ │ ├── feature_settings.dart │ │ │ ├── settings.dart │ │ │ └── settings.g.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ └── feature_settings_test.dart │ └── settings-sanity-schema │ │ ├── .gitignore │ │ ├── README.md │ │ ├── index.tsx │ │ ├── package.json │ │ ├── pnpm-lock.yaml │ │ └── tsconfig.json ├── shared │ ├── chakra_shared │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── lib │ │ │ ├── chakra_plugin_auth.dart │ │ │ ├── chakra_shared.dart │ │ │ └── ui │ │ │ │ ├── detail_builder.dart │ │ │ │ ├── floating_app_bar.dart │ │ │ │ └── youtube_video_player.dart │ │ └── pubspec.yaml │ ├── design_system │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── assets │ │ │ └── fonts │ │ │ │ └── poppins │ │ │ │ ├── Poppins-Black.ttf │ │ │ │ ├── Poppins-BlackItalic.ttf │ │ │ │ ├── Poppins-Bold.ttf │ │ │ │ ├── Poppins-BoldItalic.ttf │ │ │ │ ├── Poppins-ExtraBold.ttf │ │ │ │ ├── Poppins-ExtraBoldItalic.ttf │ │ │ │ ├── Poppins-ExtraLight.ttf │ │ │ │ ├── Poppins-ExtraLightItalic.ttf │ │ │ │ ├── Poppins-Italic.ttf │ │ │ │ ├── Poppins-Light.ttf │ │ │ │ ├── Poppins-LightItalic.ttf │ │ │ │ ├── Poppins-Medium.ttf │ │ │ │ ├── Poppins-MediumItalic.ttf │ │ │ │ ├── Poppins-Regular.ttf │ │ │ │ ├── Poppins-SemiBold.ttf │ │ │ │ ├── Poppins-SemiBoldItalic.ttf │ │ │ │ ├── Poppins-Thin.ttf │ │ │ │ └── Poppins-ThinItalic.ttf │ │ ├── example │ │ │ └── main.dart │ │ ├── lib │ │ │ ├── core │ │ │ │ ├── aspect_ratio.dart │ │ │ │ ├── border_radius.dart │ │ │ │ ├── border_width.dart │ │ │ │ ├── gap.dart │ │ │ │ ├── index.dart │ │ │ │ ├── linear_gradient.dart │ │ │ │ ├── sizing.dart │ │ │ │ ├── spacing.dart │ │ │ │ ├── text_theme.dart │ │ │ │ └── tmdb_text_theme.dart │ │ │ ├── design_system.dart │ │ │ ├── generated │ │ │ │ └── theme.dart │ │ │ └── utils │ │ │ │ └── extensions.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ └── vyuh_design_system_test.dart │ └── tmdb_client │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── build.yaml │ │ ├── lib │ │ ├── model │ │ │ ├── base.dart │ │ │ ├── base.g.dart │ │ │ ├── genre.dart │ │ │ ├── genre.g.dart │ │ │ ├── image.dart │ │ │ ├── image.g.dart │ │ │ ├── movie.dart │ │ │ ├── movie.g.dart │ │ │ ├── person.dart │ │ │ ├── person.g.dart │ │ │ ├── review.dart │ │ │ ├── review.g.dart │ │ │ ├── series.dart │ │ │ ├── series.g.dart │ │ │ ├── trailer.dart │ │ │ └── trailer.g.dart │ │ ├── movies_api.dart │ │ ├── person_api.dart │ │ ├── person_api.g.dart │ │ ├── search_api.dart │ │ ├── series_api.dart │ │ ├── tmdb_client.dart │ │ └── util.dart │ │ ├── pubspec.yaml │ │ └── test │ │ └── tmdb_client_test.dart ├── tmdb │ ├── feature_tmdb │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── assets │ │ │ └── images │ │ │ │ ├── action.png │ │ │ │ ├── adventure.png │ │ │ │ ├── animation.png │ │ │ │ ├── comedy.png │ │ │ │ ├── crime.png │ │ │ │ ├── documentary.png │ │ │ │ ├── drama.png │ │ │ │ ├── family.png │ │ │ │ ├── fantasy.png │ │ │ │ ├── history.png │ │ │ │ ├── horror.png │ │ │ │ ├── kids.png │ │ │ │ ├── music.png │ │ │ │ ├── mystery.png │ │ │ │ ├── news.png │ │ │ │ ├── reality.png │ │ │ │ ├── romance.png │ │ │ │ ├── scienceFiction.png │ │ │ │ ├── soap.png │ │ │ │ ├── talk.png │ │ │ │ ├── thriller.png │ │ │ │ ├── tvMovie.png │ │ │ │ ├── war.png │ │ │ │ └── western.png │ │ ├── build.yaml │ │ ├── lib │ │ │ ├── action │ │ │ │ ├── add_to_watchlist.dart │ │ │ │ ├── add_to_watchlist.g.dart │ │ │ │ ├── drop_down_selection.dart │ │ │ │ └── drop_down_selection.g.dart │ │ │ ├── content │ │ │ │ ├── api_config_genres.dart │ │ │ │ ├── api_config_genres.g.dart │ │ │ │ ├── api_config_movies.dart │ │ │ │ ├── api_config_movies.g.dart │ │ │ │ ├── api_config_series.dart │ │ │ │ ├── api_config_series.g.dart │ │ │ │ ├── dropdown_menu.dart │ │ │ │ ├── dropdown_menu.g.dart │ │ │ │ ├── enums │ │ │ │ │ └── config_enum.dart │ │ │ │ ├── movie_detail_section.dart │ │ │ │ ├── movie_detail_section.g.dart │ │ │ │ ├── movie_watchlist_section.dart │ │ │ │ ├── movie_watchlist_section.g.dart │ │ │ │ ├── person_detail_section.dart │ │ │ │ ├── person_detail_section.g.dart │ │ │ │ ├── search_section.dart │ │ │ │ ├── search_section.g.dart │ │ │ │ ├── series_detail_section.dart │ │ │ │ ├── series_detail_section.g.dart │ │ │ │ ├── series_watchlist_section.dart │ │ │ │ ├── series_watchlist_section.g.dart │ │ │ │ ├── tmdb_list_layout.dart │ │ │ │ ├── tmdb_list_layout.g.dart │ │ │ │ ├── tmdb_media_toggle_layout.dart │ │ │ │ ├── tmdb_media_toggle_layout.g.dart │ │ │ │ ├── tmdb_single_item_layout.dart │ │ │ │ ├── tmdb_single_item_layout.g.dart │ │ │ │ └── watchlist_view.dart │ │ │ ├── feature.dart │ │ │ ├── feature_tmdb.dart │ │ │ ├── routes.dart │ │ │ ├── store │ │ │ │ └── tmdb_search_store.dart │ │ │ ├── tmdb_store.dart │ │ │ ├── ui │ │ │ │ ├── collection_view.dart │ │ │ │ ├── common_widgets │ │ │ │ │ ├── box_widget.dart │ │ │ │ │ └── vote_percentage.dart │ │ │ │ ├── date_and_details_widget.dart │ │ │ │ ├── formatters.dart │ │ │ │ ├── movie_details.dart │ │ │ │ ├── person_details.dart │ │ │ │ ├── popularity_widget.dart │ │ │ │ ├── search_screen.dart │ │ │ │ ├── section_title.dart │ │ │ │ ├── sections │ │ │ │ │ ├── footer.dart │ │ │ │ │ ├── gallery.dart │ │ │ │ │ ├── hero.dart │ │ │ │ │ ├── movie_card.dart │ │ │ │ │ ├── people_card.dart │ │ │ │ │ ├── preview_list.dart │ │ │ │ │ ├── provider.dart │ │ │ │ │ ├── review_card.dart │ │ │ │ │ ├── series_card.dart │ │ │ │ │ ├── statistics.dart │ │ │ │ │ └── trailer.dart │ │ │ │ ├── series_details.dart │ │ │ │ ├── widget │ │ │ │ │ ├── add_to_watchlist_button.dart │ │ │ │ │ ├── carousel_widget.dart │ │ │ │ │ ├── circular_carousel.dart │ │ │ │ │ └── dot_widget.dart │ │ │ │ └── zoomable_image.dart │ │ │ └── utils │ │ │ │ ├── assets.dart │ │ │ │ ├── constants.dart │ │ │ │ └── utils.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ ├── content │ │ │ └── api_config_collection_test.dart │ │ │ ├── feature_tmdb_test.dart │ │ │ ├── routes_test.dart │ │ │ └── routes_test.mocks.dart │ └── tmdb │ │ ├── package.json │ │ ├── pnpm-lock.yaml │ │ ├── src │ │ ├── action │ │ │ ├── addToWatchlist.ts │ │ │ └── drop-down-action.ts │ │ ├── api-config │ │ │ ├── genres-config.ts │ │ │ ├── movies-config.ts │ │ │ └── series-config.ts │ │ ├── dropdown-menu.ts │ │ ├── index.ts │ │ ├── movie-section.ts │ │ ├── movie-watchlist-section.ts │ │ ├── person-detail-section.ts │ │ ├── search-section.ts │ │ ├── series-section.ts │ │ ├── series-watchlist-section.ts │ │ ├── tmdb-list-layout.ts │ │ ├── tmdb-media-toggle-layout.ts │ │ └── tmdb-single-item-layout.ts │ │ └── tsconfig.json ├── unsplash │ └── feature_unsplash │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.yaml │ │ ├── lib │ │ ├── feature.dart │ │ ├── feature_unsplash.dart │ │ ├── routes.dart │ │ ├── ui │ │ │ ├── collection_detail.dart │ │ │ ├── collection_view.dart │ │ │ ├── home.dart │ │ │ ├── photo_card.dart │ │ │ ├── photo_detail.dart │ │ │ ├── search_view.dart │ │ │ └── topic_detail.dart │ │ └── unsplash_store.dart │ │ ├── pubspec.yaml │ │ └── test │ │ └── feature_unsplash_test.dart └── wonderous │ ├── feature_wonderous │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── build.yaml │ ├── lib │ │ ├── api │ │ │ ├── wonder.dart │ │ │ ├── wonder.g.dart │ │ │ └── wonder_client.dart │ │ ├── content │ │ │ ├── query_configurations.dart │ │ │ ├── query_configurations.g.dart │ │ │ ├── section.dart │ │ │ ├── section.g.dart │ │ │ ├── wonder_list_item.dart │ │ │ └── wonder_list_item.g.dart │ │ ├── feature.dart │ │ ├── feature_wonderous.dart │ │ ├── routes.dart │ │ └── ui │ │ │ ├── common.dart │ │ │ ├── formatters.dart │ │ │ ├── page_view_layout.dart │ │ │ ├── page_view_layout.g.dart │ │ │ └── sections │ │ │ ├── construction_section.dart │ │ │ ├── events_section.dart │ │ │ ├── hero_section.dart │ │ │ ├── history_section.dart │ │ │ ├── location_info_section.dart │ │ │ └── photos_section.dart │ ├── pubspec.yaml │ └── test │ │ └── feature_wonderous_test.dart │ └── wonderous │ ├── package.json │ ├── pnpm-lock.yaml │ ├── src │ ├── index.ts │ ├── page-view-group-layout.ts │ ├── query-configurations.ts │ ├── section.ts │ └── wonder.tsx │ └── tsconfig.json ├── justfile ├── package.json ├── packages ├── plugins │ ├── vyuh_plugin_storage_hive │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ ├── hive_storage_plugin.dart │ │ │ └── vyuh_plugin_storage_hive.dart │ │ └── pubspec.yaml │ ├── vyuh_plugin_storage_secure │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── example │ │ │ └── README.md │ │ ├── lib │ │ │ ├── secure_storage_plugin.dart │ │ │ └── vyuh_plugin_storage_secure.dart │ │ └── pubspec.yaml │ └── vyuh_plugin_telemetry_provider_console │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ └── vyuh_plugin_telemetry_provider_console.dart │ │ └── pubspec.yaml ├── sanity │ ├── flutter_sanity_portable_text │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.yaml │ │ ├── example │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ ├── lib │ │ │ │ └── main.dart │ │ │ ├── pubspec.yaml │ │ │ ├── screenshot.png │ │ │ └── web │ │ │ │ ├── favicon.png │ │ │ │ ├── icons │ │ │ │ ├── Icon-192.png │ │ │ │ ├── Icon-512.png │ │ │ │ ├── Icon-maskable-192.png │ │ │ │ └── Icon-maskable-512.png │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ ├── lib │ │ │ ├── flutter_sanity_portable_text.dart │ │ │ ├── model │ │ │ │ ├── markdef_descriptor.dart │ │ │ │ ├── text_block.dart │ │ │ │ └── text_block.g.dart │ │ │ └── ui │ │ │ │ ├── portable_text_block.dart │ │ │ │ ├── portable_text_config.dart │ │ │ │ └── portable_text_widget.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ ├── custom_test.dart │ │ │ ├── default_styles_test.dart │ │ │ ├── errors_test.dart │ │ │ ├── fundamentals_test.dart │ │ │ ├── markdef_test.dart │ │ │ ├── text_block_test.dart │ │ │ └── util.dart │ ├── sanity_client │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.yaml │ │ ├── example │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ ├── example.dart │ │ │ │ └── live_example.dart │ │ │ └── pubspec.yaml │ │ ├── lib │ │ │ ├── client.dart │ │ │ ├── config.dart │ │ │ ├── exceptions.dart │ │ │ ├── live.dart │ │ │ ├── response_types.dart │ │ │ ├── response_types.g.dart │ │ │ ├── sanity_client.dart │ │ │ ├── sanity_request.dart │ │ │ ├── sanity_url_builder.dart │ │ │ └── types.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ ├── dataset_test.dart │ │ │ ├── query_test.dart │ │ │ ├── sanity_config_test.dart │ │ │ ├── url_builder_test.dart │ │ │ └── util.dart │ └── vyuh_plugin_content_provider_sanity │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ ├── exception.dart │ │ ├── live_provider.dart │ │ ├── processor.dart │ │ └── vyuh_plugin_content_provider_sanity.dart │ │ ├── pubspec.yaml │ │ └── test │ │ └── vyuh_plugin_content_provider_sanity_test.dart ├── system │ ├── vyuh_cache │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── example │ │ │ └── main.dart │ │ ├── lib │ │ │ ├── memory_cache_storage.dart │ │ │ └── vyuh_cache.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ └── vyuh_cache_test.dart │ ├── vyuh_content_widget │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.yaml │ │ ├── example │ │ │ └── README.md │ │ ├── lib │ │ │ ├── document.dart │ │ │ ├── document.g.dart │ │ │ ├── vyuh_content_binding.dart │ │ │ ├── vyuh_content_widget.dart │ │ │ └── widget.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ ├── utils.dart │ │ │ ├── vyuh_content_binding_test.dart │ │ │ ├── vyuh_content_widget_builders_test.dart │ │ │ └── vyuh_content_widget_test.dart │ ├── vyuh_core │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.yaml │ │ ├── lib │ │ │ ├── asserts.dart │ │ │ ├── extension.dart │ │ │ ├── feature_descriptor.dart │ │ │ ├── plugin │ │ │ │ ├── analytics │ │ │ │ │ ├── analytics_plugin.dart │ │ │ │ │ ├── analytics_provider.dart │ │ │ │ │ ├── content_extension.dart │ │ │ │ │ └── noop_analytics_provider.dart │ │ │ │ ├── auth │ │ │ │ │ ├── anonymous_auth_plugin.dart │ │ │ │ │ ├── auth_plugin.dart │ │ │ │ │ ├── exceptions.dart │ │ │ │ │ └── user.dart │ │ │ │ ├── content │ │ │ │ │ ├── content_failure.dart │ │ │ │ │ ├── content_item.dart │ │ │ │ │ ├── content_plugin.dart │ │ │ │ │ ├── content_provider.dart │ │ │ │ │ ├── debug_modifier.dart │ │ │ │ │ ├── live_content_provider.dart │ │ │ │ │ ├── local_content_provider.dart │ │ │ │ │ ├── noop_content_plugin.dart │ │ │ │ │ ├── noop_content_provider.dart │ │ │ │ │ ├── reference.dart │ │ │ │ │ ├── reference.g.dart │ │ │ │ │ ├── route_base.dart │ │ │ │ │ ├── route_base.g.dart │ │ │ │ │ ├── serialization.dart │ │ │ │ │ ├── type_descriptor.dart │ │ │ │ │ ├── unknown.dart │ │ │ │ │ └── unknown.g.dart │ │ │ │ ├── di │ │ │ │ │ ├── di_plugin.dart │ │ │ │ │ └── plugin_di_get_it.dart │ │ │ │ ├── env │ │ │ │ │ ├── default_env_plugin.dart │ │ │ │ │ ├── env_plugin.dart │ │ │ │ │ └── noop_env_plugin.dart │ │ │ │ ├── event_plugin.dart │ │ │ │ ├── feature_flag.dart │ │ │ │ ├── i18n │ │ │ │ │ ├── LOCALIZATION_GUIDE.md │ │ │ │ │ ├── i18n.dart │ │ │ │ │ ├── locale_configuration.dart │ │ │ │ │ ├── locale_plugin.dart │ │ │ │ │ └── translation_registration.dart │ │ │ │ ├── navigation │ │ │ │ │ ├── default_navigation_plugin.dart │ │ │ │ │ ├── fallback_route_page_builder.dart │ │ │ │ │ └── navigation.dart │ │ │ │ ├── network │ │ │ │ │ ├── http_network_plugin.dart │ │ │ │ │ ├── http_network_plugin_stub.dart │ │ │ │ │ ├── http_network_plugin_web.dart │ │ │ │ │ └── network_plugin.dart │ │ │ │ ├── plugin.dart │ │ │ │ ├── plugin_descriptor.dart │ │ │ │ ├── storage │ │ │ │ │ ├── in_memory_secure_storage_plugin.dart │ │ │ │ │ ├── in_memory_storage_plugin.dart │ │ │ │ │ ├── storage.dart │ │ │ │ │ └── storage_plugin.dart │ │ │ │ └── telemetry │ │ │ │ │ ├── logger.dart │ │ │ │ │ ├── noop_telemetry_provider.dart │ │ │ │ │ ├── telemetry_plugin.dart │ │ │ │ │ └── telemetry_provider.dart │ │ │ ├── runtime │ │ │ │ ├── cms_route.dart │ │ │ │ ├── init_tracker.dart │ │ │ │ ├── platform │ │ │ │ │ ├── default_platform.dart │ │ │ │ │ ├── default_route_loader.dart │ │ │ │ │ ├── error_view.dart │ │ │ │ │ ├── events.dart │ │ │ │ │ ├── framework_init_view.dart │ │ │ │ │ ├── platform_init_tracker.dart │ │ │ │ │ ├── powered_by_widget.dart │ │ │ │ │ ├── uninitialized_platform.dart │ │ │ │ │ ├── unknown_content_view.dart │ │ │ │ │ └── vyuh_platform.dart │ │ │ │ ├── platform_widget_builder.dart │ │ │ │ ├── run_app.dart │ │ │ │ └── vyuh_binding.dart │ │ │ └── vyuh_core.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ ├── event_plugin_test.dart │ │ │ ├── network_plugin_test.dart │ │ │ ├── telemetry_plugin_test.dart │ │ │ └── vyuh_platform_test.dart │ ├── vyuh_extension_content │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── build.yaml │ │ ├── lib │ │ │ ├── content │ │ │ │ ├── action.dart │ │ │ │ ├── action.g.dart │ │ │ │ ├── condition.dart │ │ │ │ ├── condition.g.dart │ │ │ │ ├── content_builder.dart │ │ │ │ └── content_descriptor.dart │ │ │ ├── content_extension_builder.dart │ │ │ ├── content_extension_descriptor.dart │ │ │ ├── plugin │ │ │ │ ├── content_plugin.dart │ │ │ │ ├── extension.dart │ │ │ │ ├── unknown_placeholder_factory.dart │ │ │ │ └── unknown_placeholders.dart │ │ │ ├── preview │ │ │ │ └── preview_context.dart │ │ │ ├── ui │ │ │ │ ├── document_builder.dart │ │ │ │ ├── document_future_builder.dart │ │ │ │ ├── document_stream_builder.dart │ │ │ │ ├── route_builder.dart │ │ │ │ ├── route_builder_proxy.dart │ │ │ │ ├── scoped_di_widget.dart │ │ │ │ ├── unknown_content_indicator.dart │ │ │ │ └── unknown_content_indicator_usage.md │ │ │ └── vyuh_extension_content.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ ├── content_builder_test.dart │ │ │ ├── content_extension_builder_test.dart │ │ │ ├── content_modifier_test.dart │ │ │ ├── content_plugin_test.dart │ │ │ ├── layout_configuration_test.dart │ │ │ ├── utils.dart │ │ │ └── vyuh_extension_content_test.dart │ ├── vyuh_feature_auth │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.yaml │ │ ├── lib │ │ │ ├── auth_user_card_layout.dart │ │ │ ├── content │ │ │ │ ├── email_password_form.dart │ │ │ │ ├── email_password_form.g.dart │ │ │ │ ├── email_password_form_layout.dart │ │ │ │ ├── email_password_form_layout.g.dart │ │ │ │ ├── forgot_password_form.dart │ │ │ │ ├── forgot_password_form.g.dart │ │ │ │ ├── forgot_password_form_layout.dart │ │ │ │ ├── forgot_password_form_layout.g.dart │ │ │ │ ├── hint_action_text.dart │ │ │ │ ├── hint_action_text.g.dart │ │ │ │ ├── oauth_signin.dart │ │ │ │ ├── oauth_signin.g.dart │ │ │ │ ├── oauth_signin_layout.dart │ │ │ │ ├── oauth_signin_layout.g.dart │ │ │ │ ├── phone_otp_form.dart │ │ │ │ ├── phone_otp_form.g.dart │ │ │ │ ├── phone_otp_form_layout.dart │ │ │ │ ├── phone_otp_form_layout.g.dart │ │ │ │ ├── profile_card.dart │ │ │ │ ├── profile_card.g.dart │ │ │ │ ├── profile_form_layout.dart │ │ │ │ ├── profile_form_layout.g.dart │ │ │ │ ├── username_password_form.dart │ │ │ │ ├── username_password_form.g.dart │ │ │ │ ├── username_password_form_layout.dart │ │ │ │ └── username_password_form_layout.g.dart │ │ │ ├── feature.dart │ │ │ ├── ui │ │ │ │ ├── auth_form_builder.dart │ │ │ │ ├── auth_state_widget.dart │ │ │ │ ├── email_password_view.dart │ │ │ │ ├── forgot_password_view.dart │ │ │ │ ├── form_fields.dart │ │ │ │ ├── oauth_sign_in_view.dart │ │ │ │ ├── phone_otp_view.dart │ │ │ │ ├── social_icons.dart │ │ │ │ └── username_password_view.dart │ │ │ └── vyuh_feature_auth.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ └── vyuh_feature_firebase_auth_test.dart │ ├── vyuh_feature_developer │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── example │ │ │ └── main.dart │ │ ├── lib │ │ │ ├── components │ │ │ │ ├── items.dart │ │ │ │ ├── route_list.dart │ │ │ │ ├── standard_plugin_view.dart │ │ │ │ └── sticky_section.dart │ │ │ ├── pages │ │ │ │ ├── analytics_plugin_detail.dart │ │ │ │ ├── content_extension_detail.dart │ │ │ │ ├── content_plugin_detail.dart │ │ │ │ ├── feature_detail.dart │ │ │ │ ├── playground │ │ │ │ │ ├── content_playground.dart │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── content_list.dart │ │ │ │ │ │ ├── content_list_item.dart │ │ │ │ │ │ ├── feature_item.dart │ │ │ │ │ │ ├── no_preview_card.dart │ │ │ │ │ │ ├── preview.dart │ │ │ │ │ │ ├── preview_panel.dart │ │ │ │ │ │ └── widgets.dart │ │ │ │ ├── plugin_and_feature_list.dart │ │ │ │ ├── plugin_detail.dart │ │ │ │ └── telemetry_plugin_detail.dart │ │ │ ├── routes.dart │ │ │ └── vyuh_feature_developer.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ └── vyuh_feature_developer_test.dart │ ├── vyuh_feature_onboarding │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.yaml │ │ ├── lib │ │ │ ├── default_layout.dart │ │ │ ├── default_layout.g.dart │ │ │ ├── feature.dart │ │ │ ├── onboarding.dart │ │ │ ├── onboarding.g.dart │ │ │ └── vyuh_feature_onboarding.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ └── vyuh_feature_onboarding_test.dart │ ├── vyuh_feature_system │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.yaml │ │ ├── lib │ │ │ ├── action │ │ │ │ ├── alert.dart │ │ │ │ ├── alert.g.dart │ │ │ │ ├── conditional_action.dart │ │ │ │ ├── conditional_action.g.dart │ │ │ │ ├── delay.dart │ │ │ │ ├── delay.g.dart │ │ │ │ ├── drawer.dart │ │ │ │ ├── drawer.g.dart │ │ │ │ ├── navigate_back.dart │ │ │ │ ├── navigate_back.g.dart │ │ │ │ ├── navigation.dart │ │ │ │ ├── navigation.g.dart │ │ │ │ ├── open_in_dialog.dart │ │ │ │ ├── open_in_dialog.g.dart │ │ │ │ ├── open_url.dart │ │ │ │ ├── open_url.g.dart │ │ │ │ ├── restart.dart │ │ │ │ ├── restart.g.dart │ │ │ │ ├── route_refresh.dart │ │ │ │ ├── route_refresh.g.dart │ │ │ │ ├── snack_bar.dart │ │ │ │ ├── snack_bar.g.dart │ │ │ │ ├── toggle_theme.dart │ │ │ │ └── toggle_theme.g.dart │ │ │ ├── api_handler │ │ │ │ ├── json_path_api_configuration.dart │ │ │ │ └── json_path_api_configuration.g.dart │ │ │ ├── condition │ │ │ │ ├── boolean.dart │ │ │ │ ├── boolean.g.dart │ │ │ │ ├── current_platform.dart │ │ │ │ ├── current_theme_mode.dart │ │ │ │ ├── feature_flag.dart │ │ │ │ ├── feature_flag.g.dart │ │ │ │ ├── screen_size.dart │ │ │ │ └── user_authenticated.dart │ │ │ ├── content │ │ │ │ ├── accordion.dart │ │ │ │ ├── accordion.g.dart │ │ │ │ ├── api_content.dart │ │ │ │ ├── api_content.g.dart │ │ │ │ ├── card │ │ │ │ │ ├── button_layout.dart │ │ │ │ │ ├── button_layout.g.dart │ │ │ │ │ ├── card.dart │ │ │ │ │ ├── card.g.dart │ │ │ │ │ ├── default_layout.dart │ │ │ │ │ ├── default_layout.g.dart │ │ │ │ │ ├── list_item_layout.dart │ │ │ │ │ └── list_item_layout.g.dart │ │ │ │ ├── conditional.dart │ │ │ │ ├── conditional.g.dart │ │ │ │ ├── conditional_route │ │ │ │ │ ├── conditional_route.dart │ │ │ │ │ ├── conditional_route.g.dart │ │ │ │ │ └── default_layout.dart │ │ │ │ ├── divider.dart │ │ │ │ ├── divider.g.dart │ │ │ │ ├── document_view │ │ │ │ │ ├── document_list.dart │ │ │ │ │ ├── document_list.g.dart │ │ │ │ │ ├── document_list_layout.dart │ │ │ │ │ ├── document_list_layout.g.dart │ │ │ │ │ ├── document_section.dart │ │ │ │ │ ├── document_section.g.dart │ │ │ │ │ ├── document_section_layout.dart │ │ │ │ │ ├── document_section_layout.g.dart │ │ │ │ │ ├── document_view.dart │ │ │ │ │ ├── document_view.g.dart │ │ │ │ │ └── ui │ │ │ │ │ │ ├── document_builder.dart │ │ │ │ │ │ └── document_listview_builder.dart │ │ │ │ ├── empty.dart │ │ │ │ ├── empty.g.dart │ │ │ │ ├── group │ │ │ │ │ ├── carousel_layout.dart │ │ │ │ │ ├── carousel_layout.g.dart │ │ │ │ │ ├── default_layout.dart │ │ │ │ │ ├── default_layout.g.dart │ │ │ │ │ ├── grid_layout.dart │ │ │ │ │ ├── grid_layout.g.dart │ │ │ │ │ ├── group.dart │ │ │ │ │ ├── group.g.dart │ │ │ │ │ ├── list_layout.dart │ │ │ │ │ └── list_layout.g.dart │ │ │ │ ├── index.dart │ │ │ │ ├── portable_text │ │ │ │ │ ├── invoke_action.dart │ │ │ │ │ ├── invoke_action.g.dart │ │ │ │ │ ├── portable_text.dart │ │ │ │ │ └── portable_text.g.dart │ │ │ │ ├── route │ │ │ │ │ ├── default_layout.dart │ │ │ │ │ ├── default_layout.g.dart │ │ │ │ │ ├── route.dart │ │ │ │ │ ├── route.g.dart │ │ │ │ │ ├── route_type.dart │ │ │ │ │ ├── route_type.g.dart │ │ │ │ │ ├── single_item_layout.dart │ │ │ │ │ ├── single_item_layout.g.dart │ │ │ │ │ ├── tabs.dart │ │ │ │ │ └── tabs.g.dart │ │ │ │ ├── video_player.dart │ │ │ │ └── video_player.g.dart │ │ │ ├── content_modifiers │ │ │ │ ├── theme_modifier.dart │ │ │ │ └── theme_modifier.g.dart │ │ │ ├── feature.dart │ │ │ ├── service │ │ │ │ ├── breakpoint_service.dart │ │ │ │ └── theme_service.dart │ │ │ ├── ui │ │ │ │ ├── carousel.dart │ │ │ │ ├── conditional_layout.dart │ │ │ │ ├── conditional_layout.g.dart │ │ │ │ ├── content_image.dart │ │ │ │ ├── content_items_scrollview.dart │ │ │ │ ├── default_page_route_layout.dart │ │ │ │ ├── dialog_page.dart │ │ │ │ ├── press_effect.dart │ │ │ │ ├── route_scaffold.dart │ │ │ │ ├── single_item_route_scaffold.dart │ │ │ │ ├── text.dart │ │ │ │ └── web_view.dart │ │ │ └── vyuh_feature_system.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ └── vyuh_feature_essentials_test.dart │ ├── vyuh_test │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ ├── ready_check.dart │ │ │ ├── test_utils.dart │ │ │ └── vyuh_test.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ └── vyuh_test_test.dart │ └── vyuh_widgetbook │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc │ │ └── images │ │ │ └── widgetbook.png │ │ ├── example │ │ └── example.md │ │ ├── lib │ │ ├── shell.dart │ │ ├── ui │ │ │ └── no_preview_card.dart │ │ └── vyuh_widgetbook.dart │ │ └── pubspec.yaml └── vyuh_cli │ ├── .gitignore │ ├── .pubignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── _images │ ├── vyuh_cli.png │ └── vyuh_cli_doctor.png │ ├── bin │ └── vyuh.dart │ ├── bricks │ ├── vyuh_feature │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── __brick__ │ │ │ └── {{ name.snakeCase() }} │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── build.yaml │ │ │ │ ├── lib │ │ │ │ ├── feature.dart │ │ │ │ └── {{ name.snakeCase() }}.dart │ │ │ │ ├── pubspec.yaml │ │ │ │ └── test │ │ │ │ └── {{ name.snakeCase() }}_test.dart │ │ ├── brick.yaml │ │ └── hooks │ │ │ ├── post_gen.dart │ │ │ └── pubspec.yaml │ ├── vyuh_feature_sanity_schema │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── __brick__ │ │ │ └── {{ name.paramCase() }} │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── README.md │ │ │ │ ├── package.json │ │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── simple-content.ts │ │ │ │ ├── tsconfig.json │ │ │ │ └── tsup.config.ts │ │ ├── brick.yaml │ │ └── hooks │ │ │ ├── post_gen.dart │ │ │ └── pubspec.yaml │ ├── vyuh_item │ │ ├── README.md │ │ ├── __brick__ │ │ │ ├── layouts │ │ │ │ ├── {{item_name.snakeCase()}}_layout.dart │ │ │ │ └── {{item_name.snakeCase()}}_layout.g.dart │ │ │ ├── {{item_name.snakeCase()}}.dart │ │ │ └── {{item_name.snakeCase()}}.g.dart │ │ └── brick.yaml │ └── vyuh_project │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── __brick__ │ │ └── {{ name.snakeCase() }} │ │ │ ├── .gitignore │ │ │ ├── .npmrc │ │ │ ├── .prettierrc.json │ │ │ ├── README.md │ │ │ ├── analysis_options.yaml │ │ │ ├── apps │ │ │ └── README.md │ │ │ ├── features │ │ │ ├── README.md │ │ │ └── counter │ │ │ │ └── feature_counter │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── build.yaml │ │ │ │ ├── lib │ │ │ │ ├── feature.dart │ │ │ │ └── feature_counter.dart │ │ │ │ ├── pubspec.yaml │ │ │ │ └── test │ │ │ │ └── feature_counter_test.dart │ │ │ ├── justfile │ │ │ ├── melos.yaml │ │ │ ├── overrides │ │ │ ├── .env │ │ │ ├── assets │ │ │ │ ├── app-icon.png │ │ │ │ └── launchscreen-image.png │ │ │ └── lib │ │ │ │ └── main.dart │ │ │ ├── package.json │ │ │ ├── packages │ │ │ └── README.md │ │ │ ├── plugins │ │ │ └── README.md │ │ │ ├── pnpm-workspace.yaml │ │ │ └── pubspec.yaml │ │ ├── brick.yaml │ │ └── hooks │ │ ├── commands │ │ ├── cli_command.dart │ │ ├── flutter_command.dart │ │ ├── melos_command.dart │ │ ├── preconditions_check_command.dart │ │ └── sanity_command.dart │ │ ├── post_gen.dart │ │ └── pubspec.yaml │ ├── dart_test.yaml │ ├── example │ └── README.md │ ├── justfile │ ├── lib │ ├── command_runner.dart │ ├── commands │ │ ├── create │ │ │ ├── base_create_command.dart │ │ │ ├── command.dart │ │ │ ├── feature │ │ │ │ ├── command.dart │ │ │ │ ├── template.dart │ │ │ │ └── vyuh_feature_bundle.dart │ │ │ ├── item │ │ │ │ ├── command.dart │ │ │ │ ├── template.dart │ │ │ │ └── vyuh_item_bundle.dart │ │ │ ├── project │ │ │ │ ├── command.dart │ │ │ │ ├── template.dart │ │ │ │ └── vyuh_project_bundle.dart │ │ │ └── schema │ │ │ │ ├── command.dart │ │ │ │ ├── template.dart │ │ │ │ └── vyuh_feature_sanity_schema_bundle.dart │ │ ├── doctor │ │ │ ├── command.dart │ │ │ └── src │ │ │ │ ├── doctor.dart │ │ │ │ ├── utils │ │ │ │ ├── comand_version_validator.dart │ │ │ │ ├── doctor_validator.dart │ │ │ │ ├── user_messages.dart │ │ │ │ └── utils.dart │ │ │ │ └── validators │ │ │ │ ├── dart_validator.dart │ │ │ │ ├── flutter_validator.dart │ │ │ │ ├── melos_validator.dart │ │ │ │ ├── node_validator.dart │ │ │ │ ├── pnpm_validator.dart │ │ │ │ ├── sanity_validator.dart │ │ │ │ └── validators.dart │ │ └── update │ │ │ └── command.dart │ ├── template.dart │ ├── utils │ │ ├── logger_extension.dart │ │ └── utils.dart │ ├── version.dart │ └── vyuh_cli.dart │ ├── pubspec.yaml │ └── test │ ├── ensure_build_test.dart │ └── src │ ├── command_runner_test.dart │ └── commands │ └── update_command_test.dart ├── pnpm-workspace.yaml ├── pubspec.lock ├── pubspec.yaml ├── schemas ├── vyuh-sanity-schema-auth │ ├── .eslintrc.mjs │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── card.layout.authUser.tsx │ │ ├── content │ │ │ ├── email-password-form.ts │ │ │ ├── forgot-password-form.ts │ │ │ ├── hint-action-text.ts │ │ │ ├── oauth-signin.ts │ │ │ ├── phone-otp-form.ts │ │ │ └── util.ts │ │ ├── feature.ts │ │ └── index.ts │ ├── tsconfig.json │ └── tsup.config.ts └── vyuh-sanity-schema-onboarding │ ├── .eslintrc.mjs │ ├── .gitignore │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ ├── index.ts │ └── onboarding-content.ts │ ├── tsconfig.json │ └── tsup.config.ts └── tools └── update_version.dart /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.github/workflows/dart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/.github/workflows/dart.yml -------------------------------------------------------------------------------- /.github/workflows/deploy_web.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/.github/workflows/deploy_web.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.run/Vyuh Demo.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/.run/Vyuh Demo.run.xml -------------------------------------------------------------------------------- /.run/Vyuh Studio.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/.run/Vyuh Studio.run.xml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/README.md -------------------------------------------------------------------------------- /_images/example-conference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/_images/example-conference.png -------------------------------------------------------------------------------- /_images/example-counter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/_images/example-counter.png -------------------------------------------------------------------------------- /_images/example-food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/_images/example-food.png -------------------------------------------------------------------------------- /_images/example-misc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/_images/example-misc.png -------------------------------------------------------------------------------- /_images/example-puzzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/_images/example-puzzle.png -------------------------------------------------------------------------------- /_images/example-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/_images/example-settings.png -------------------------------------------------------------------------------- /_images/example-tmdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/_images/example-tmdb.png -------------------------------------------------------------------------------- /_images/example-unsplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/_images/example-unsplash.png -------------------------------------------------------------------------------- /_images/example-wonderous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/_images/example-wonderous.png -------------------------------------------------------------------------------- /_images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/_images/logo.png -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /apps/content_explorer/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_explorer/.env -------------------------------------------------------------------------------- /apps/content_explorer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_explorer/.gitignore -------------------------------------------------------------------------------- /apps/content_explorer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_explorer/README.md -------------------------------------------------------------------------------- /apps/content_explorer/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_explorer/lib/main.dart -------------------------------------------------------------------------------- /apps/content_explorer/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_explorer/macos/.gitignore -------------------------------------------------------------------------------- /apps/content_explorer/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_explorer/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /apps/content_explorer/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_explorer/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /apps/content_explorer/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_explorer/macos/Podfile -------------------------------------------------------------------------------- /apps/content_explorer/macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_explorer/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /apps/content_explorer/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_explorer/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /apps/content_explorer/macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_explorer/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /apps/content_explorer/macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_explorer/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /apps/content_explorer/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_explorer/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /apps/content_explorer/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_explorer/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /apps/content_explorer/macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_explorer/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /apps/content_explorer/macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_explorer/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /apps/content_explorer/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_explorer/macos/Runner/Info.plist -------------------------------------------------------------------------------- /apps/content_explorer/macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_explorer/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /apps/content_explorer/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_explorer/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /apps/content_explorer/macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_explorer/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /apps/content_explorer/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_explorer/pubspec.yaml -------------------------------------------------------------------------------- /apps/content_explorer/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_explorer/web/favicon.png -------------------------------------------------------------------------------- /apps/content_explorer/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_explorer/web/icons/Icon-192.png -------------------------------------------------------------------------------- /apps/content_explorer/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_explorer/web/icons/Icon-512.png -------------------------------------------------------------------------------- /apps/content_explorer/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_explorer/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /apps/content_explorer/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_explorer/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /apps/content_explorer/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_explorer/web/index.html -------------------------------------------------------------------------------- /apps/content_explorer/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_explorer/web/manifest.json -------------------------------------------------------------------------------- /apps/content_widget_demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_widget_demo/.gitignore -------------------------------------------------------------------------------- /apps/content_widget_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_widget_demo/README.md -------------------------------------------------------------------------------- /apps/content_widget_demo/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_widget_demo/android/.gitignore -------------------------------------------------------------------------------- /apps/content_widget_demo/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_widget_demo/android/app/build.gradle -------------------------------------------------------------------------------- /apps/content_widget_demo/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_widget_demo/android/build.gradle -------------------------------------------------------------------------------- /apps/content_widget_demo/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_widget_demo/android/gradle.properties -------------------------------------------------------------------------------- /apps/content_widget_demo/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_widget_demo/android/settings.gradle -------------------------------------------------------------------------------- /apps/content_widget_demo/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_widget_demo/ios/.gitignore -------------------------------------------------------------------------------- /apps/content_widget_demo/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_widget_demo/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /apps/content_widget_demo/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_widget_demo/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /apps/content_widget_demo/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_widget_demo/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /apps/content_widget_demo/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_widget_demo/ios/Podfile -------------------------------------------------------------------------------- /apps/content_widget_demo/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_widget_demo/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /apps/content_widget_demo/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_widget_demo/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /apps/content_widget_demo/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_widget_demo/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /apps/content_widget_demo/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_widget_demo/ios/Runner/Info.plist -------------------------------------------------------------------------------- /apps/content_widget_demo/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /apps/content_widget_demo/ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_widget_demo/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /apps/content_widget_demo/lib/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_widget_demo/lib/example.dart -------------------------------------------------------------------------------- /apps/content_widget_demo/lib/examples/conferences.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_widget_demo/lib/examples/conferences.dart -------------------------------------------------------------------------------- /apps/content_widget_demo/lib/examples/custom_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_widget_demo/lib/examples/custom_widget.dart -------------------------------------------------------------------------------- /apps/content_widget_demo/lib/examples/hello_world.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_widget_demo/lib/examples/hello_world.dart -------------------------------------------------------------------------------- /apps/content_widget_demo/lib/examples/route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_widget_demo/lib/examples/route.dart -------------------------------------------------------------------------------- /apps/content_widget_demo/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_widget_demo/lib/main.dart -------------------------------------------------------------------------------- /apps/content_widget_demo/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_widget_demo/pubspec.yaml -------------------------------------------------------------------------------- /apps/content_widget_demo/test/widget_test.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /apps/content_widget_demo/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_widget_demo/web/favicon.png -------------------------------------------------------------------------------- /apps/content_widget_demo/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_widget_demo/web/icons/Icon-192.png -------------------------------------------------------------------------------- /apps/content_widget_demo/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_widget_demo/web/icons/Icon-512.png -------------------------------------------------------------------------------- /apps/content_widget_demo/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_widget_demo/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /apps/content_widget_demo/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_widget_demo/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /apps/content_widget_demo/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_widget_demo/web/index.html -------------------------------------------------------------------------------- /apps/content_widget_demo/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/content_widget_demo/web/manifest.json -------------------------------------------------------------------------------- /apps/demo-studio/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@sanity/eslint-config-studio" 3 | } 4 | -------------------------------------------------------------------------------- /apps/demo-studio/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/demo-studio/.gitignore -------------------------------------------------------------------------------- /apps/demo-studio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/demo-studio/README.md -------------------------------------------------------------------------------- /apps/demo-studio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/demo-studio/package.json -------------------------------------------------------------------------------- /apps/demo-studio/sanity.cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/demo-studio/sanity.cli.ts -------------------------------------------------------------------------------- /apps/demo-studio/sanity.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/demo-studio/sanity.config.ts -------------------------------------------------------------------------------- /apps/demo-studio/scripts/sanity-script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/demo-studio/scripts/sanity-script.ts -------------------------------------------------------------------------------- /apps/demo-studio/static/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/demo-studio/static/.gitkeep -------------------------------------------------------------------------------- /apps/demo-studio/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/demo-studio/tsconfig.json -------------------------------------------------------------------------------- /apps/vyuh_demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/.gitignore -------------------------------------------------------------------------------- /apps/vyuh_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/README.md -------------------------------------------------------------------------------- /apps/vyuh_demo/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/android/.gitignore -------------------------------------------------------------------------------- /apps/vyuh_demo/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/android/app/build.gradle -------------------------------------------------------------------------------- /apps/vyuh_demo/android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/android/app/google-services.json -------------------------------------------------------------------------------- /apps/vyuh_demo/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /apps/vyuh_demo/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /apps/vyuh_demo/android/app/src/main/res/drawable-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/android/app/src/main/res/drawable-hdpi/splash.png -------------------------------------------------------------------------------- /apps/vyuh_demo/android/app/src/main/res/drawable-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/android/app/src/main/res/drawable-mdpi/splash.png -------------------------------------------------------------------------------- /apps/vyuh_demo/android/app/src/main/res/drawable/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/android/app/src/main/res/drawable/background.png -------------------------------------------------------------------------------- /apps/vyuh_demo/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /apps/vyuh_demo/android/app/src/main/res/values-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/android/app/src/main/res/values-v31/styles.xml -------------------------------------------------------------------------------- /apps/vyuh_demo/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /apps/vyuh_demo/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /apps/vyuh_demo/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/android/build.gradle -------------------------------------------------------------------------------- /apps/vyuh_demo/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/android/gradle.properties -------------------------------------------------------------------------------- /apps/vyuh_demo/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /apps/vyuh_demo/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/android/settings.gradle -------------------------------------------------------------------------------- /apps/vyuh_demo/assets/app-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/assets/app-icon.png -------------------------------------------------------------------------------- /apps/vyuh_demo/assets/launchscreen-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/assets/launchscreen-image.png -------------------------------------------------------------------------------- /apps/vyuh_demo/assets/routes/_tab1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/assets/routes/_tab1.json -------------------------------------------------------------------------------- /apps/vyuh_demo/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/ios/.gitignore -------------------------------------------------------------------------------- /apps/vyuh_demo/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /apps/vyuh_demo/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /apps/vyuh_demo/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /apps/vyuh_demo/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/ios/Podfile -------------------------------------------------------------------------------- /apps/vyuh_demo/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/ios/Podfile.lock -------------------------------------------------------------------------------- /apps/vyuh_demo/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /apps/vyuh_demo/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /apps/vyuh_demo/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /apps/vyuh_demo/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /apps/vyuh_demo/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /apps/vyuh_demo/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/ios/Runner/Info.plist -------------------------------------------------------------------------------- /apps/vyuh_demo/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /apps/vyuh_demo/ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /apps/vyuh_demo/ios/fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/ios/fastlane/Appfile -------------------------------------------------------------------------------- /apps/vyuh_demo/ios/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/ios/fastlane/Fastfile -------------------------------------------------------------------------------- /apps/vyuh_demo/ios/fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/ios/fastlane/README.md -------------------------------------------------------------------------------- /apps/vyuh_demo/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/lib/main.dart -------------------------------------------------------------------------------- /apps/vyuh_demo/lib/root_feature.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/lib/root_feature.dart -------------------------------------------------------------------------------- /apps/vyuh_demo/mockoon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/mockoon.json -------------------------------------------------------------------------------- /apps/vyuh_demo/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/pubspec.yaml -------------------------------------------------------------------------------- /apps/vyuh_demo/test/widget_test.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /apps/vyuh_demo/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/web/favicon.png -------------------------------------------------------------------------------- /apps/vyuh_demo/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/web/icons/Icon-192.png -------------------------------------------------------------------------------- /apps/vyuh_demo/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/web/icons/Icon-512.png -------------------------------------------------------------------------------- /apps/vyuh_demo/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /apps/vyuh_demo/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /apps/vyuh_demo/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/web/index.html -------------------------------------------------------------------------------- /apps/vyuh_demo/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/web/manifest.json -------------------------------------------------------------------------------- /apps/vyuh_demo/web/splash/img/dark-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/web/splash/img/dark-1x.png -------------------------------------------------------------------------------- /apps/vyuh_demo/web/splash/img/dark-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/web/splash/img/dark-2x.png -------------------------------------------------------------------------------- /apps/vyuh_demo/web/splash/img/dark-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/web/splash/img/dark-3x.png -------------------------------------------------------------------------------- /apps/vyuh_demo/web/splash/img/dark-4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/web/splash/img/dark-4x.png -------------------------------------------------------------------------------- /apps/vyuh_demo/web/splash/img/light-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/web/splash/img/light-1x.png -------------------------------------------------------------------------------- /apps/vyuh_demo/web/splash/img/light-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/web/splash/img/light-2x.png -------------------------------------------------------------------------------- /apps/vyuh_demo/web/splash/img/light-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/web/splash/img/light-3x.png -------------------------------------------------------------------------------- /apps/vyuh_demo/web/splash/img/light-4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/apps/vyuh_demo/web/splash/img/light-4x.png -------------------------------------------------------------------------------- /examples/conference/feature_conference/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/conference/feature_conference/.gitignore -------------------------------------------------------------------------------- /examples/conference/feature_conference/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.0.0 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /examples/conference/feature_conference/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /examples/conference/feature_conference/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/conference/feature_conference/README.md -------------------------------------------------------------------------------- /examples/conference/feature_conference/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/conference/feature_conference/build.yaml -------------------------------------------------------------------------------- /examples/conference/feature_conference/lib/content/edition.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/conference/feature_conference/lib/content/edition.dart -------------------------------------------------------------------------------- /examples/conference/feature_conference/lib/content/room.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/conference/feature_conference/lib/content/room.dart -------------------------------------------------------------------------------- /examples/conference/feature_conference/lib/content/room.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/conference/feature_conference/lib/content/room.g.dart -------------------------------------------------------------------------------- /examples/conference/feature_conference/lib/content/schedule.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/conference/feature_conference/lib/content/schedule.dart -------------------------------------------------------------------------------- /examples/conference/feature_conference/lib/content/session.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/conference/feature_conference/lib/content/session.dart -------------------------------------------------------------------------------- /examples/conference/feature_conference/lib/content/speaker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/conference/feature_conference/lib/content/speaker.dart -------------------------------------------------------------------------------- /examples/conference/feature_conference/lib/content/sponsor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/conference/feature_conference/lib/content/sponsor.dart -------------------------------------------------------------------------------- /examples/conference/feature_conference/lib/content/track.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/conference/feature_conference/lib/content/track.dart -------------------------------------------------------------------------------- /examples/conference/feature_conference/lib/content/track.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/conference/feature_conference/lib/content/track.g.dart -------------------------------------------------------------------------------- /examples/conference/feature_conference/lib/content/venue.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/conference/feature_conference/lib/content/venue.dart -------------------------------------------------------------------------------- /examples/conference/feature_conference/lib/content/venue.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/conference/feature_conference/lib/content/venue.g.dart -------------------------------------------------------------------------------- /examples/conference/feature_conference/lib/feature.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/conference/feature_conference/lib/feature.dart -------------------------------------------------------------------------------- /examples/conference/feature_conference/lib/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/conference/feature_conference/lib/routes.dart -------------------------------------------------------------------------------- /examples/conference/feature_conference/lib/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/conference/feature_conference/lib/utils.dart -------------------------------------------------------------------------------- /examples/conference/feature_conference/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/conference/feature_conference/pubspec.yaml -------------------------------------------------------------------------------- /examples/conference/feature_conference/test/feature_conference_test.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /examples/conference/schema/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/conference/schema/.gitignore -------------------------------------------------------------------------------- /examples/conference/schema/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # schema 2 | -------------------------------------------------------------------------------- /examples/conference/schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/conference/schema/README.md -------------------------------------------------------------------------------- /examples/conference/schema/RELATIONSHIPS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/conference/schema/RELATIONSHIPS.md -------------------------------------------------------------------------------- /examples/conference/schema/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/conference/schema/package.json -------------------------------------------------------------------------------- /examples/conference/schema/src/documents/conference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/conference/schema/src/documents/conference.ts -------------------------------------------------------------------------------- /examples/conference/schema/src/documents/edition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/conference/schema/src/documents/edition.ts -------------------------------------------------------------------------------- /examples/conference/schema/src/documents/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/conference/schema/src/documents/session.ts -------------------------------------------------------------------------------- /examples/conference/schema/src/documents/speaker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/conference/schema/src/documents/speaker.ts -------------------------------------------------------------------------------- /examples/conference/schema/src/documents/sponsor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/conference/schema/src/documents/sponsor.ts -------------------------------------------------------------------------------- /examples/conference/schema/src/documents/track.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/conference/schema/src/documents/track.ts -------------------------------------------------------------------------------- /examples/conference/schema/src/documents/venue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/conference/schema/src/documents/venue.ts -------------------------------------------------------------------------------- /examples/conference/schema/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/conference/schema/src/index.ts -------------------------------------------------------------------------------- /examples/conference/schema/src/objects/room.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/conference/schema/src/objects/room.ts -------------------------------------------------------------------------------- /examples/conference/schema/src/objects/schedule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/conference/schema/src/objects/schedule.ts -------------------------------------------------------------------------------- /examples/conference/schema/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/conference/schema/tsconfig.json -------------------------------------------------------------------------------- /examples/conference/schema/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/conference/schema/tsup.config.ts -------------------------------------------------------------------------------- /examples/feature_counter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/feature_counter/.gitignore -------------------------------------------------------------------------------- /examples/feature_counter/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.0.0 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /examples/feature_counter/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /examples/feature_counter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/feature_counter/README.md -------------------------------------------------------------------------------- /examples/feature_counter/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/feature_counter/build.yaml -------------------------------------------------------------------------------- /examples/feature_counter/lib/feature.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/feature_counter/lib/feature.dart -------------------------------------------------------------------------------- /examples/feature_counter/lib/feature_counter.dart: -------------------------------------------------------------------------------- 1 | library; 2 | 3 | export 'feature.dart'; 4 | -------------------------------------------------------------------------------- /examples/feature_counter/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/feature_counter/pubspec.yaml -------------------------------------------------------------------------------- /examples/feature_counter/test/feature_counter_test.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /examples/food/feature_food/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/food/feature_food/.gitignore -------------------------------------------------------------------------------- /examples/food/feature_food/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.0.0 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /examples/food/feature_food/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /examples/food/feature_food/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/food/feature_food/README.md -------------------------------------------------------------------------------- /examples/food/feature_food/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/food/feature_food/build.yaml -------------------------------------------------------------------------------- /examples/food/feature_food/lib/action/select_menu_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/food/feature_food/lib/action/select_menu_item.dart -------------------------------------------------------------------------------- /examples/food/feature_food/lib/action/select_menu_item.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/food/feature_food/lib/action/select_menu_item.g.dart -------------------------------------------------------------------------------- /examples/food/feature_food/lib/api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/food/feature_food/lib/api.dart -------------------------------------------------------------------------------- /examples/food/feature_food/lib/content/food_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/food/feature_food/lib/content/food_item.dart -------------------------------------------------------------------------------- /examples/food/feature_food/lib/content/food_item.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/food/feature_food/lib/content/food_item.g.dart -------------------------------------------------------------------------------- /examples/food/feature_food/lib/content/selected_food_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/food/feature_food/lib/content/selected_food_item.dart -------------------------------------------------------------------------------- /examples/food/feature_food/lib/content/selected_food_item.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/food/feature_food/lib/content/selected_food_item.g.dart -------------------------------------------------------------------------------- /examples/food/feature_food/lib/feature.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/food/feature_food/lib/feature.dart -------------------------------------------------------------------------------- /examples/food/feature_food/lib/feature_food.dart: -------------------------------------------------------------------------------- 1 | library; 2 | 3 | export 'feature.dart'; 4 | -------------------------------------------------------------------------------- /examples/food/feature_food/lib/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/food/feature_food/lib/routes.dart -------------------------------------------------------------------------------- /examples/food/feature_food/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/food/feature_food/pubspec.yaml -------------------------------------------------------------------------------- /examples/food/feature_food/test/feature_food_test.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /examples/food/food/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/food/food/package.json -------------------------------------------------------------------------------- /examples/food/food/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/food/food/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/food/food/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/food/food/src/index.ts -------------------------------------------------------------------------------- /examples/food/food/src/menu-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/food/food/src/menu-item.ts -------------------------------------------------------------------------------- /examples/food/food/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/food/food/tsconfig.json -------------------------------------------------------------------------------- /examples/misc/feature_misc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/misc/feature_misc/.gitignore -------------------------------------------------------------------------------- /examples/misc/feature_misc/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.0.0 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /examples/misc/feature_misc/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /examples/misc/feature_misc/README.md: -------------------------------------------------------------------------------- 1 | # Misc 2 | 3 | Describe your feature in more detail here. 4 | -------------------------------------------------------------------------------- /examples/misc/feature_misc/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/misc/feature_misc/build.yaml -------------------------------------------------------------------------------- /examples/misc/feature_misc/lib/action/show_barcode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/misc/feature_misc/lib/action/show_barcode.dart -------------------------------------------------------------------------------- /examples/misc/feature_misc/lib/action/show_barcode.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/misc/feature_misc/lib/action/show_barcode.g.dart -------------------------------------------------------------------------------- /examples/misc/feature_misc/lib/condition/part_of_day.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/misc/feature_misc/lib/condition/part_of_day.dart -------------------------------------------------------------------------------- /examples/misc/feature_misc/lib/condition/part_of_day.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/misc/feature_misc/lib/condition/part_of_day.g.dart -------------------------------------------------------------------------------- /examples/misc/feature_misc/lib/content/api/model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/misc/feature_misc/lib/content/api/model.dart -------------------------------------------------------------------------------- /examples/misc/feature_misc/lib/content/api/model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/misc/feature_misc/lib/content/api/model.g.dart -------------------------------------------------------------------------------- /examples/misc/feature_misc/lib/content/api/widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/misc/feature_misc/lib/content/api/widgets.dart -------------------------------------------------------------------------------- /examples/misc/feature_misc/lib/content/card_layout_di_store.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/misc/feature_misc/lib/content/card_layout_di_store.dart -------------------------------------------------------------------------------- /examples/misc/feature_misc/lib/content/live_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/misc/feature_misc/lib/content/live_card.dart -------------------------------------------------------------------------------- /examples/misc/feature_misc/lib/content/live_card.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/misc/feature_misc/lib/content/live_card.g.dart -------------------------------------------------------------------------------- /examples/misc/feature_misc/lib/content/product/product_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/misc/feature_misc/lib/content/product/product_card.dart -------------------------------------------------------------------------------- /examples/misc/feature_misc/lib/content/score_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/misc/feature_misc/lib/content/score_card.dart -------------------------------------------------------------------------------- /examples/misc/feature_misc/lib/content/score_card.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/misc/feature_misc/lib/content/score_card.g.dart -------------------------------------------------------------------------------- /examples/misc/feature_misc/lib/feature.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/misc/feature_misc/lib/feature.dart -------------------------------------------------------------------------------- /examples/misc/feature_misc/lib/feature_misc.dart: -------------------------------------------------------------------------------- 1 | library; 2 | 3 | export 'feature.dart'; 4 | -------------------------------------------------------------------------------- /examples/misc/feature_misc/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/misc/feature_misc/pubspec.yaml -------------------------------------------------------------------------------- /examples/misc/feature_misc/test/feature_misc_test.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /examples/misc/misc/.eslintrc.mjs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/misc/misc/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/misc/misc/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/misc/misc/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/misc/misc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/misc/misc/package.json -------------------------------------------------------------------------------- /examples/misc/misc/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/misc/misc/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/misc/misc/src/action/show-barcode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/misc/misc/src/action/show-barcode.ts -------------------------------------------------------------------------------- /examples/misc/misc/src/condition/part-of-day.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/misc/misc/src/condition/part-of-day.ts -------------------------------------------------------------------------------- /examples/misc/misc/src/content/diStore-card-layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/misc/misc/src/content/diStore-card-layout.ts -------------------------------------------------------------------------------- /examples/misc/misc/src/content/dummy-json-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/misc/misc/src/content/dummy-json-api.ts -------------------------------------------------------------------------------- /examples/misc/misc/src/content/live-card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/misc/misc/src/content/live-card.ts -------------------------------------------------------------------------------- /examples/misc/misc/src/content/missing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/misc/misc/src/content/missing.ts -------------------------------------------------------------------------------- /examples/misc/misc/src/content/product-card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/misc/misc/src/content/product-card.ts -------------------------------------------------------------------------------- /examples/misc/misc/src/content/score-card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/misc/misc/src/content/score-card.ts -------------------------------------------------------------------------------- /examples/misc/misc/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/misc/misc/src/index.ts -------------------------------------------------------------------------------- /examples/misc/misc/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/misc/misc/tsconfig.json -------------------------------------------------------------------------------- /examples/misc/misc/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/misc/misc/tsup.config.ts -------------------------------------------------------------------------------- /examples/puzzles/feature_puzzles/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/puzzles/feature_puzzles/.gitignore -------------------------------------------------------------------------------- /examples/puzzles/feature_puzzles/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /examples/puzzles/feature_puzzles/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /examples/puzzles/feature_puzzles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/puzzles/feature_puzzles/README.md -------------------------------------------------------------------------------- /examples/puzzles/feature_puzzles/assets/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/puzzles/feature_puzzles/assets/background.jpg -------------------------------------------------------------------------------- /examples/puzzles/feature_puzzles/assets/boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/puzzles/feature_puzzles/assets/boat.png -------------------------------------------------------------------------------- /examples/puzzles/feature_puzzles/assets/clouds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/puzzles/feature_puzzles/assets/clouds.jpg -------------------------------------------------------------------------------- /examples/puzzles/feature_puzzles/assets/water.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/puzzles/feature_puzzles/assets/water.jpg -------------------------------------------------------------------------------- /examples/puzzles/feature_puzzles/lib/action/select_level.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/puzzles/feature_puzzles/lib/action/select_level.dart -------------------------------------------------------------------------------- /examples/puzzles/feature_puzzles/lib/action/select_level.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/puzzles/feature_puzzles/lib/action/select_level.g.dart -------------------------------------------------------------------------------- /examples/puzzles/feature_puzzles/lib/api/model/level.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/puzzles/feature_puzzles/lib/api/model/level.dart -------------------------------------------------------------------------------- /examples/puzzles/feature_puzzles/lib/api/model/level.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/puzzles/feature_puzzles/lib/api/model/level.g.dart -------------------------------------------------------------------------------- /examples/puzzles/feature_puzzles/lib/api/puzzles_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/puzzles/feature_puzzles/lib/api/puzzles_client.dart -------------------------------------------------------------------------------- /examples/puzzles/feature_puzzles/lib/feature.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/puzzles/feature_puzzles/lib/feature.dart -------------------------------------------------------------------------------- /examples/puzzles/feature_puzzles/lib/feature_puzzles.dart: -------------------------------------------------------------------------------- 1 | library; 2 | 3 | export 'feature.dart'; 4 | -------------------------------------------------------------------------------- /examples/puzzles/feature_puzzles/lib/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/puzzles/feature_puzzles/lib/routes.dart -------------------------------------------------------------------------------- /examples/puzzles/feature_puzzles/lib/ui/layout/level_layout.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/puzzles/feature_puzzles/lib/ui/layout/level_layout.dart -------------------------------------------------------------------------------- /examples/puzzles/feature_puzzles/lib/ui/loader/level_loader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/puzzles/feature_puzzles/lib/ui/loader/level_loader.dart -------------------------------------------------------------------------------- /examples/puzzles/feature_puzzles/lib/utils/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/puzzles/feature_puzzles/lib/utils/constants.dart -------------------------------------------------------------------------------- /examples/puzzles/feature_puzzles/lib/utils/extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/puzzles/feature_puzzles/lib/utils/extensions.dart -------------------------------------------------------------------------------- /examples/puzzles/feature_puzzles/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/puzzles/feature_puzzles/pubspec.yaml -------------------------------------------------------------------------------- /examples/puzzles/feature_puzzles/test/routes_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/puzzles/feature_puzzles/test/routes_test.dart -------------------------------------------------------------------------------- /examples/puzzles/puzzles/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/puzzles/puzzles/package.json -------------------------------------------------------------------------------- /examples/puzzles/puzzles/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/puzzles/puzzles/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/puzzles/puzzles/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/puzzles/puzzles/src/index.ts -------------------------------------------------------------------------------- /examples/puzzles/puzzles/src/level-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/puzzles/puzzles/src/level-action.ts -------------------------------------------------------------------------------- /examples/puzzles/puzzles/src/level-layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/puzzles/puzzles/src/level-layout.ts -------------------------------------------------------------------------------- /examples/puzzles/puzzles/src/puzzle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/puzzles/puzzles/src/puzzle.tsx -------------------------------------------------------------------------------- /examples/puzzles/puzzles/src/section.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/puzzles/puzzles/src/section.ts -------------------------------------------------------------------------------- /examples/puzzles/puzzles/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/puzzles/puzzles/tsconfig.json -------------------------------------------------------------------------------- /examples/settings/feature_settings/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/settings/feature_settings/.gitignore -------------------------------------------------------------------------------- /examples/settings/feature_settings/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /examples/settings/feature_settings/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /examples/settings/feature_settings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/settings/feature_settings/README.md -------------------------------------------------------------------------------- /examples/settings/feature_settings/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/settings/feature_settings/analysis_options.yaml -------------------------------------------------------------------------------- /examples/settings/feature_settings/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/settings/feature_settings/build.yaml -------------------------------------------------------------------------------- /examples/settings/feature_settings/lib/feature_settings.dart: -------------------------------------------------------------------------------- 1 | library; 2 | 3 | export 'settings.dart'; 4 | -------------------------------------------------------------------------------- /examples/settings/feature_settings/lib/settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/settings/feature_settings/lib/settings.dart -------------------------------------------------------------------------------- /examples/settings/feature_settings/lib/settings.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/settings/feature_settings/lib/settings.g.dart -------------------------------------------------------------------------------- /examples/settings/feature_settings/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/settings/feature_settings/pubspec.yaml -------------------------------------------------------------------------------- /examples/settings/feature_settings/test/feature_settings_test.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /examples/settings/settings-sanity-schema/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/settings/settings-sanity-schema/.gitignore -------------------------------------------------------------------------------- /examples/settings/settings-sanity-schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/settings/settings-sanity-schema/README.md -------------------------------------------------------------------------------- /examples/settings/settings-sanity-schema/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/settings/settings-sanity-schema/index.tsx -------------------------------------------------------------------------------- /examples/settings/settings-sanity-schema/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/settings/settings-sanity-schema/package.json -------------------------------------------------------------------------------- /examples/settings/settings-sanity-schema/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/settings/settings-sanity-schema/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/settings/settings-sanity-schema/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/settings/settings-sanity-schema/tsconfig.json -------------------------------------------------------------------------------- /examples/shared/chakra_shared/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/chakra_shared/.gitignore -------------------------------------------------------------------------------- /examples/shared/chakra_shared/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /examples/shared/chakra_shared/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /examples/shared/chakra_shared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/chakra_shared/README.md -------------------------------------------------------------------------------- /examples/shared/chakra_shared/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/chakra_shared/analysis_options.yaml -------------------------------------------------------------------------------- /examples/shared/chakra_shared/lib/chakra_plugin_auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/chakra_shared/lib/chakra_plugin_auth.dart -------------------------------------------------------------------------------- /examples/shared/chakra_shared/lib/chakra_shared.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/chakra_shared/lib/chakra_shared.dart -------------------------------------------------------------------------------- /examples/shared/chakra_shared/lib/ui/detail_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/chakra_shared/lib/ui/detail_builder.dart -------------------------------------------------------------------------------- /examples/shared/chakra_shared/lib/ui/floating_app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/chakra_shared/lib/ui/floating_app_bar.dart -------------------------------------------------------------------------------- /examples/shared/chakra_shared/lib/ui/youtube_video_player.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/chakra_shared/lib/ui/youtube_video_player.dart -------------------------------------------------------------------------------- /examples/shared/chakra_shared/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/chakra_shared/pubspec.yaml -------------------------------------------------------------------------------- /examples/shared/design_system/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/design_system/.gitignore -------------------------------------------------------------------------------- /examples/shared/design_system/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.0.0 2 | 3 | Initial Release -------------------------------------------------------------------------------- /examples/shared/design_system/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /examples/shared/design_system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/design_system/README.md -------------------------------------------------------------------------------- /examples/shared/design_system/example/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/design_system/example/main.dart -------------------------------------------------------------------------------- /examples/shared/design_system/lib/core/aspect_ratio.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/design_system/lib/core/aspect_ratio.dart -------------------------------------------------------------------------------- /examples/shared/design_system/lib/core/border_radius.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/design_system/lib/core/border_radius.dart -------------------------------------------------------------------------------- /examples/shared/design_system/lib/core/border_width.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/design_system/lib/core/border_width.dart -------------------------------------------------------------------------------- /examples/shared/design_system/lib/core/gap.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/design_system/lib/core/gap.dart -------------------------------------------------------------------------------- /examples/shared/design_system/lib/core/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/design_system/lib/core/index.dart -------------------------------------------------------------------------------- /examples/shared/design_system/lib/core/linear_gradient.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/design_system/lib/core/linear_gradient.dart -------------------------------------------------------------------------------- /examples/shared/design_system/lib/core/sizing.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/design_system/lib/core/sizing.dart -------------------------------------------------------------------------------- /examples/shared/design_system/lib/core/spacing.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/design_system/lib/core/spacing.dart -------------------------------------------------------------------------------- /examples/shared/design_system/lib/core/text_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/design_system/lib/core/text_theme.dart -------------------------------------------------------------------------------- /examples/shared/design_system/lib/core/tmdb_text_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/design_system/lib/core/tmdb_text_theme.dart -------------------------------------------------------------------------------- /examples/shared/design_system/lib/design_system.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/design_system/lib/design_system.dart -------------------------------------------------------------------------------- /examples/shared/design_system/lib/generated/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/design_system/lib/generated/theme.dart -------------------------------------------------------------------------------- /examples/shared/design_system/lib/utils/extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/design_system/lib/utils/extensions.dart -------------------------------------------------------------------------------- /examples/shared/design_system/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/design_system/pubspec.yaml -------------------------------------------------------------------------------- /examples/shared/design_system/test/vyuh_design_system_test.dart: -------------------------------------------------------------------------------- 1 | void main() {} 2 | -------------------------------------------------------------------------------- /examples/shared/tmdb_client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/tmdb_client/.gitignore -------------------------------------------------------------------------------- /examples/shared/tmdb_client/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /examples/shared/tmdb_client/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /examples/shared/tmdb_client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/tmdb_client/README.md -------------------------------------------------------------------------------- /examples/shared/tmdb_client/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/tmdb_client/analysis_options.yaml -------------------------------------------------------------------------------- /examples/shared/tmdb_client/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/tmdb_client/build.yaml -------------------------------------------------------------------------------- /examples/shared/tmdb_client/lib/model/base.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/tmdb_client/lib/model/base.dart -------------------------------------------------------------------------------- /examples/shared/tmdb_client/lib/model/base.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/tmdb_client/lib/model/base.g.dart -------------------------------------------------------------------------------- /examples/shared/tmdb_client/lib/model/genre.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/tmdb_client/lib/model/genre.dart -------------------------------------------------------------------------------- /examples/shared/tmdb_client/lib/model/genre.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/tmdb_client/lib/model/genre.g.dart -------------------------------------------------------------------------------- /examples/shared/tmdb_client/lib/model/image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/tmdb_client/lib/model/image.dart -------------------------------------------------------------------------------- /examples/shared/tmdb_client/lib/model/image.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/tmdb_client/lib/model/image.g.dart -------------------------------------------------------------------------------- /examples/shared/tmdb_client/lib/model/movie.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/tmdb_client/lib/model/movie.dart -------------------------------------------------------------------------------- /examples/shared/tmdb_client/lib/model/movie.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/tmdb_client/lib/model/movie.g.dart -------------------------------------------------------------------------------- /examples/shared/tmdb_client/lib/model/person.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/tmdb_client/lib/model/person.dart -------------------------------------------------------------------------------- /examples/shared/tmdb_client/lib/model/person.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/tmdb_client/lib/model/person.g.dart -------------------------------------------------------------------------------- /examples/shared/tmdb_client/lib/model/review.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/tmdb_client/lib/model/review.dart -------------------------------------------------------------------------------- /examples/shared/tmdb_client/lib/model/review.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/tmdb_client/lib/model/review.g.dart -------------------------------------------------------------------------------- /examples/shared/tmdb_client/lib/model/series.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/tmdb_client/lib/model/series.dart -------------------------------------------------------------------------------- /examples/shared/tmdb_client/lib/model/series.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/tmdb_client/lib/model/series.g.dart -------------------------------------------------------------------------------- /examples/shared/tmdb_client/lib/model/trailer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/tmdb_client/lib/model/trailer.dart -------------------------------------------------------------------------------- /examples/shared/tmdb_client/lib/model/trailer.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/tmdb_client/lib/model/trailer.g.dart -------------------------------------------------------------------------------- /examples/shared/tmdb_client/lib/movies_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/tmdb_client/lib/movies_api.dart -------------------------------------------------------------------------------- /examples/shared/tmdb_client/lib/person_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/tmdb_client/lib/person_api.dart -------------------------------------------------------------------------------- /examples/shared/tmdb_client/lib/person_api.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/tmdb_client/lib/person_api.g.dart -------------------------------------------------------------------------------- /examples/shared/tmdb_client/lib/search_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/tmdb_client/lib/search_api.dart -------------------------------------------------------------------------------- /examples/shared/tmdb_client/lib/series_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/tmdb_client/lib/series_api.dart -------------------------------------------------------------------------------- /examples/shared/tmdb_client/lib/tmdb_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/tmdb_client/lib/tmdb_client.dart -------------------------------------------------------------------------------- /examples/shared/tmdb_client/lib/util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/tmdb_client/lib/util.dart -------------------------------------------------------------------------------- /examples/shared/tmdb_client/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/shared/tmdb_client/pubspec.yaml -------------------------------------------------------------------------------- /examples/shared/tmdb_client/test/tmdb_client_test.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/.gitignore -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.0.0 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/README.md -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/assets/images/action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/assets/images/action.png -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/assets/images/adventure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/assets/images/adventure.png -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/assets/images/animation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/assets/images/animation.png -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/assets/images/comedy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/assets/images/comedy.png -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/assets/images/crime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/assets/images/crime.png -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/assets/images/documentary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/assets/images/documentary.png -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/assets/images/drama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/assets/images/drama.png -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/assets/images/family.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/assets/images/family.png -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/assets/images/fantasy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/assets/images/fantasy.png -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/assets/images/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/assets/images/history.png -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/assets/images/horror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/assets/images/horror.png -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/assets/images/kids.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/assets/images/kids.png -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/assets/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/assets/images/music.png -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/assets/images/mystery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/assets/images/mystery.png -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/assets/images/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/assets/images/news.png -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/assets/images/reality.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/assets/images/reality.png -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/assets/images/romance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/assets/images/romance.png -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/assets/images/scienceFiction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/assets/images/scienceFiction.png -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/assets/images/soap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/assets/images/soap.png -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/assets/images/talk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/assets/images/talk.png -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/assets/images/thriller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/assets/images/thriller.png -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/assets/images/tvMovie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/assets/images/tvMovie.png -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/assets/images/war.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/assets/images/war.png -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/assets/images/western.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/assets/images/western.png -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/build.yaml -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/action/add_to_watchlist.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/action/add_to_watchlist.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/action/add_to_watchlist.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/action/add_to_watchlist.g.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/action/drop_down_selection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/action/drop_down_selection.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/action/drop_down_selection.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/action/drop_down_selection.g.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/content/api_config_genres.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/content/api_config_genres.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/content/api_config_genres.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/content/api_config_genres.g.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/content/api_config_movies.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/content/api_config_movies.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/content/api_config_movies.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/content/api_config_movies.g.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/content/api_config_series.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/content/api_config_series.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/content/api_config_series.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/content/api_config_series.g.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/content/dropdown_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/content/dropdown_menu.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/content/dropdown_menu.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/content/dropdown_menu.g.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/content/enums/config_enum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/content/enums/config_enum.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/content/movie_detail_section.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/content/movie_detail_section.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/content/search_section.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/content/search_section.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/content/search_section.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/content/search_section.g.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/content/tmdb_list_layout.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/content/tmdb_list_layout.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/content/tmdb_list_layout.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/content/tmdb_list_layout.g.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/content/watchlist_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/content/watchlist_view.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/feature.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/feature.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/feature_tmdb.dart: -------------------------------------------------------------------------------- 1 | library; 2 | 3 | export 'feature.dart'; 4 | -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/routes.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/store/tmdb_search_store.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/store/tmdb_search_store.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/tmdb_store.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/tmdb_store.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/ui/collection_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/ui/collection_view.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/ui/common_widgets/box_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/ui/common_widgets/box_widget.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/ui/formatters.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/ui/formatters.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/ui/movie_details.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/ui/movie_details.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/ui/person_details.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/ui/person_details.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/ui/popularity_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/ui/popularity_widget.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/ui/search_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/ui/search_screen.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/ui/section_title.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/ui/section_title.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/ui/sections/footer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/ui/sections/footer.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/ui/sections/gallery.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/ui/sections/gallery.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/ui/sections/hero.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/ui/sections/hero.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/ui/sections/movie_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/ui/sections/movie_card.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/ui/sections/people_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/ui/sections/people_card.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/ui/sections/preview_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/ui/sections/preview_list.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/ui/sections/provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/ui/sections/provider.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/ui/sections/review_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/ui/sections/review_card.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/ui/sections/series_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/ui/sections/series_card.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/ui/sections/statistics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/ui/sections/statistics.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/ui/sections/trailer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/ui/sections/trailer.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/ui/series_details.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/ui/series_details.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/ui/widget/carousel_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/ui/widget/carousel_widget.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/ui/widget/dot_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/ui/widget/dot_widget.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/ui/zoomable_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/ui/zoomable_image.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/utils/assets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/utils/assets.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/utils/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/utils/constants.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/lib/utils/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/lib/utils/utils.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/pubspec.yaml -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/test/feature_tmdb_test.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/test/routes_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/test/routes_test.dart -------------------------------------------------------------------------------- /examples/tmdb/feature_tmdb/test/routes_test.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/feature_tmdb/test/routes_test.mocks.dart -------------------------------------------------------------------------------- /examples/tmdb/tmdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/tmdb/package.json -------------------------------------------------------------------------------- /examples/tmdb/tmdb/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/tmdb/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/tmdb/tmdb/src/action/addToWatchlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/tmdb/src/action/addToWatchlist.ts -------------------------------------------------------------------------------- /examples/tmdb/tmdb/src/action/drop-down-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/tmdb/src/action/drop-down-action.ts -------------------------------------------------------------------------------- /examples/tmdb/tmdb/src/api-config/genres-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/tmdb/src/api-config/genres-config.ts -------------------------------------------------------------------------------- /examples/tmdb/tmdb/src/api-config/movies-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/tmdb/src/api-config/movies-config.ts -------------------------------------------------------------------------------- /examples/tmdb/tmdb/src/api-config/series-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/tmdb/src/api-config/series-config.ts -------------------------------------------------------------------------------- /examples/tmdb/tmdb/src/dropdown-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/tmdb/src/dropdown-menu.ts -------------------------------------------------------------------------------- /examples/tmdb/tmdb/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/tmdb/src/index.ts -------------------------------------------------------------------------------- /examples/tmdb/tmdb/src/movie-section.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/tmdb/src/movie-section.ts -------------------------------------------------------------------------------- /examples/tmdb/tmdb/src/movie-watchlist-section.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/tmdb/src/movie-watchlist-section.ts -------------------------------------------------------------------------------- /examples/tmdb/tmdb/src/person-detail-section.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/tmdb/src/person-detail-section.ts -------------------------------------------------------------------------------- /examples/tmdb/tmdb/src/search-section.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/tmdb/src/search-section.ts -------------------------------------------------------------------------------- /examples/tmdb/tmdb/src/series-section.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/tmdb/src/series-section.ts -------------------------------------------------------------------------------- /examples/tmdb/tmdb/src/series-watchlist-section.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/tmdb/src/series-watchlist-section.ts -------------------------------------------------------------------------------- /examples/tmdb/tmdb/src/tmdb-list-layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/tmdb/src/tmdb-list-layout.ts -------------------------------------------------------------------------------- /examples/tmdb/tmdb/src/tmdb-media-toggle-layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/tmdb/src/tmdb-media-toggle-layout.ts -------------------------------------------------------------------------------- /examples/tmdb/tmdb/src/tmdb-single-item-layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/tmdb/src/tmdb-single-item-layout.ts -------------------------------------------------------------------------------- /examples/tmdb/tmdb/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/tmdb/tmdb/tsconfig.json -------------------------------------------------------------------------------- /examples/unsplash/feature_unsplash/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/unsplash/feature_unsplash/.gitignore -------------------------------------------------------------------------------- /examples/unsplash/feature_unsplash/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.0.0 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /examples/unsplash/feature_unsplash/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /examples/unsplash/feature_unsplash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/unsplash/feature_unsplash/README.md -------------------------------------------------------------------------------- /examples/unsplash/feature_unsplash/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/unsplash/feature_unsplash/build.yaml -------------------------------------------------------------------------------- /examples/unsplash/feature_unsplash/lib/feature.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/unsplash/feature_unsplash/lib/feature.dart -------------------------------------------------------------------------------- /examples/unsplash/feature_unsplash/lib/feature_unsplash.dart: -------------------------------------------------------------------------------- 1 | library; 2 | 3 | export 'feature.dart'; 4 | -------------------------------------------------------------------------------- /examples/unsplash/feature_unsplash/lib/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/unsplash/feature_unsplash/lib/routes.dart -------------------------------------------------------------------------------- /examples/unsplash/feature_unsplash/lib/ui/home.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/unsplash/feature_unsplash/lib/ui/home.dart -------------------------------------------------------------------------------- /examples/unsplash/feature_unsplash/lib/ui/photo_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/unsplash/feature_unsplash/lib/ui/photo_card.dart -------------------------------------------------------------------------------- /examples/unsplash/feature_unsplash/lib/ui/photo_detail.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/unsplash/feature_unsplash/lib/ui/photo_detail.dart -------------------------------------------------------------------------------- /examples/unsplash/feature_unsplash/lib/ui/search_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/unsplash/feature_unsplash/lib/ui/search_view.dart -------------------------------------------------------------------------------- /examples/unsplash/feature_unsplash/lib/ui/topic_detail.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/unsplash/feature_unsplash/lib/ui/topic_detail.dart -------------------------------------------------------------------------------- /examples/unsplash/feature_unsplash/lib/unsplash_store.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/unsplash/feature_unsplash/lib/unsplash_store.dart -------------------------------------------------------------------------------- /examples/unsplash/feature_unsplash/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/unsplash/feature_unsplash/pubspec.yaml -------------------------------------------------------------------------------- /examples/unsplash/feature_unsplash/test/feature_unsplash_test.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /examples/wonderous/feature_wonderous/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/wonderous/feature_wonderous/.gitignore -------------------------------------------------------------------------------- /examples/wonderous/feature_wonderous/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.0.0 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /examples/wonderous/feature_wonderous/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /examples/wonderous/feature_wonderous/README.md: -------------------------------------------------------------------------------- 1 | # Wonderous 2 | 3 | Describe your feature in more detail here. 4 | -------------------------------------------------------------------------------- /examples/wonderous/feature_wonderous/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/wonderous/feature_wonderous/build.yaml -------------------------------------------------------------------------------- /examples/wonderous/feature_wonderous/lib/api/wonder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/wonderous/feature_wonderous/lib/api/wonder.dart -------------------------------------------------------------------------------- /examples/wonderous/feature_wonderous/lib/api/wonder.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/wonderous/feature_wonderous/lib/api/wonder.g.dart -------------------------------------------------------------------------------- /examples/wonderous/feature_wonderous/lib/content/section.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/wonderous/feature_wonderous/lib/content/section.dart -------------------------------------------------------------------------------- /examples/wonderous/feature_wonderous/lib/feature.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/wonderous/feature_wonderous/lib/feature.dart -------------------------------------------------------------------------------- /examples/wonderous/feature_wonderous/lib/feature_wonderous.dart: -------------------------------------------------------------------------------- 1 | library; 2 | 3 | export 'feature.dart'; 4 | -------------------------------------------------------------------------------- /examples/wonderous/feature_wonderous/lib/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/wonderous/feature_wonderous/lib/routes.dart -------------------------------------------------------------------------------- /examples/wonderous/feature_wonderous/lib/ui/common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/wonderous/feature_wonderous/lib/ui/common.dart -------------------------------------------------------------------------------- /examples/wonderous/feature_wonderous/lib/ui/formatters.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/wonderous/feature_wonderous/lib/ui/formatters.dart -------------------------------------------------------------------------------- /examples/wonderous/feature_wonderous/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/wonderous/feature_wonderous/pubspec.yaml -------------------------------------------------------------------------------- /examples/wonderous/feature_wonderous/test/feature_wonderous_test.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /examples/wonderous/wonderous/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/wonderous/wonderous/package.json -------------------------------------------------------------------------------- /examples/wonderous/wonderous/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/wonderous/wonderous/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/wonderous/wonderous/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/wonderous/wonderous/src/index.ts -------------------------------------------------------------------------------- /examples/wonderous/wonderous/src/page-view-group-layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/wonderous/wonderous/src/page-view-group-layout.ts -------------------------------------------------------------------------------- /examples/wonderous/wonderous/src/query-configurations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/wonderous/wonderous/src/query-configurations.ts -------------------------------------------------------------------------------- /examples/wonderous/wonderous/src/section.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/wonderous/wonderous/src/section.ts -------------------------------------------------------------------------------- /examples/wonderous/wonderous/src/wonder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/wonderous/wonderous/src/wonder.tsx -------------------------------------------------------------------------------- /examples/wonderous/wonderous/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/examples/wonderous/wonderous/tsconfig.json -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/justfile -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/package.json -------------------------------------------------------------------------------- /packages/plugins/vyuh_plugin_storage_hive/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/plugins/vyuh_plugin_storage_hive/CHANGELOG.md -------------------------------------------------------------------------------- /packages/plugins/vyuh_plugin_storage_hive/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/plugins/vyuh_plugin_storage_hive/LICENSE -------------------------------------------------------------------------------- /packages/plugins/vyuh_plugin_storage_hive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/plugins/vyuh_plugin_storage_hive/README.md -------------------------------------------------------------------------------- /packages/plugins/vyuh_plugin_storage_hive/lib/vyuh_plugin_storage_hive.dart: -------------------------------------------------------------------------------- 1 | library; 2 | 3 | export 'hive_storage_plugin.dart'; 4 | -------------------------------------------------------------------------------- /packages/plugins/vyuh_plugin_storage_hive/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/plugins/vyuh_plugin_storage_hive/pubspec.yaml -------------------------------------------------------------------------------- /packages/plugins/vyuh_plugin_storage_secure/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/plugins/vyuh_plugin_storage_secure/CHANGELOG.md -------------------------------------------------------------------------------- /packages/plugins/vyuh_plugin_storage_secure/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/plugins/vyuh_plugin_storage_secure/LICENSE -------------------------------------------------------------------------------- /packages/plugins/vyuh_plugin_storage_secure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/plugins/vyuh_plugin_storage_secure/README.md -------------------------------------------------------------------------------- /packages/plugins/vyuh_plugin_storage_secure/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/plugins/vyuh_plugin_storage_secure/example/README.md -------------------------------------------------------------------------------- /packages/plugins/vyuh_plugin_storage_secure/lib/vyuh_plugin_storage_secure.dart: -------------------------------------------------------------------------------- 1 | library; 2 | 3 | export 'secure_storage_plugin.dart'; 4 | -------------------------------------------------------------------------------- /packages/plugins/vyuh_plugin_storage_secure/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/plugins/vyuh_plugin_storage_secure/pubspec.yaml -------------------------------------------------------------------------------- /packages/sanity/flutter_sanity_portable_text/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/sanity/flutter_sanity_portable_text/.gitignore -------------------------------------------------------------------------------- /packages/sanity/flutter_sanity_portable_text/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/sanity/flutter_sanity_portable_text/CHANGELOG.md -------------------------------------------------------------------------------- /packages/sanity/flutter_sanity_portable_text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/sanity/flutter_sanity_portable_text/LICENSE -------------------------------------------------------------------------------- /packages/sanity/flutter_sanity_portable_text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/sanity/flutter_sanity_portable_text/README.md -------------------------------------------------------------------------------- /packages/sanity/flutter_sanity_portable_text/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/sanity/flutter_sanity_portable_text/build.yaml -------------------------------------------------------------------------------- /packages/sanity/flutter_sanity_portable_text/example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /packages/sanity/flutter_sanity_portable_text/example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /packages/sanity/flutter_sanity_portable_text/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /packages/sanity/flutter_sanity_portable_text/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/sanity/flutter_sanity_portable_text/pubspec.yaml -------------------------------------------------------------------------------- /packages/sanity/flutter_sanity_portable_text/test/util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/sanity/flutter_sanity_portable_text/test/util.dart -------------------------------------------------------------------------------- /packages/sanity/sanity_client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/sanity/sanity_client/.gitignore -------------------------------------------------------------------------------- /packages/sanity/sanity_client/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/sanity/sanity_client/CHANGELOG.md -------------------------------------------------------------------------------- /packages/sanity/sanity_client/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/sanity/sanity_client/LICENSE -------------------------------------------------------------------------------- /packages/sanity/sanity_client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/sanity/sanity_client/README.md -------------------------------------------------------------------------------- /packages/sanity/sanity_client/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/sanity/sanity_client/build.yaml -------------------------------------------------------------------------------- /packages/sanity/sanity_client/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/sanity/sanity_client/example/.gitignore -------------------------------------------------------------------------------- /packages/sanity/sanity_client/example/README.md: -------------------------------------------------------------------------------- 1 | # Example for using the Sanity Client 2 | -------------------------------------------------------------------------------- /packages/sanity/sanity_client/example/lib/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/sanity/sanity_client/example/lib/example.dart -------------------------------------------------------------------------------- /packages/sanity/sanity_client/example/lib/live_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/sanity/sanity_client/example/lib/live_example.dart -------------------------------------------------------------------------------- /packages/sanity/sanity_client/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/sanity/sanity_client/example/pubspec.yaml -------------------------------------------------------------------------------- /packages/sanity/sanity_client/lib/client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/sanity/sanity_client/lib/client.dart -------------------------------------------------------------------------------- /packages/sanity/sanity_client/lib/config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/sanity/sanity_client/lib/config.dart -------------------------------------------------------------------------------- /packages/sanity/sanity_client/lib/exceptions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/sanity/sanity_client/lib/exceptions.dart -------------------------------------------------------------------------------- /packages/sanity/sanity_client/lib/live.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/sanity/sanity_client/lib/live.dart -------------------------------------------------------------------------------- /packages/sanity/sanity_client/lib/response_types.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/sanity/sanity_client/lib/response_types.dart -------------------------------------------------------------------------------- /packages/sanity/sanity_client/lib/response_types.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/sanity/sanity_client/lib/response_types.g.dart -------------------------------------------------------------------------------- /packages/sanity/sanity_client/lib/sanity_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/sanity/sanity_client/lib/sanity_client.dart -------------------------------------------------------------------------------- /packages/sanity/sanity_client/lib/sanity_request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/sanity/sanity_client/lib/sanity_request.dart -------------------------------------------------------------------------------- /packages/sanity/sanity_client/lib/sanity_url_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/sanity/sanity_client/lib/sanity_url_builder.dart -------------------------------------------------------------------------------- /packages/sanity/sanity_client/lib/types.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/sanity/sanity_client/lib/types.dart -------------------------------------------------------------------------------- /packages/sanity/sanity_client/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/sanity/sanity_client/pubspec.yaml -------------------------------------------------------------------------------- /packages/sanity/sanity_client/test/dataset_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/sanity/sanity_client/test/dataset_test.dart -------------------------------------------------------------------------------- /packages/sanity/sanity_client/test/query_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/sanity/sanity_client/test/query_test.dart -------------------------------------------------------------------------------- /packages/sanity/sanity_client/test/sanity_config_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/sanity/sanity_client/test/sanity_config_test.dart -------------------------------------------------------------------------------- /packages/sanity/sanity_client/test/url_builder_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/sanity/sanity_client/test/url_builder_test.dart -------------------------------------------------------------------------------- /packages/sanity/sanity_client/test/util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/sanity/sanity_client/test/util.dart -------------------------------------------------------------------------------- /packages/sanity/vyuh_plugin_content_provider_sanity/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/sanity/vyuh_plugin_content_provider_sanity/LICENSE -------------------------------------------------------------------------------- /packages/sanity/vyuh_plugin_content_provider_sanity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/sanity/vyuh_plugin_content_provider_sanity/README.md -------------------------------------------------------------------------------- /packages/sanity/vyuh_plugin_content_provider_sanity/test/vyuh_plugin_content_provider_sanity_test.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /packages/system/vyuh_cache/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_cache/.gitignore -------------------------------------------------------------------------------- /packages/system/vyuh_cache/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_cache/CHANGELOG.md -------------------------------------------------------------------------------- /packages/system/vyuh_cache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_cache/LICENSE -------------------------------------------------------------------------------- /packages/system/vyuh_cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_cache/README.md -------------------------------------------------------------------------------- /packages/system/vyuh_cache/example/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_cache/example/main.dart -------------------------------------------------------------------------------- /packages/system/vyuh_cache/lib/memory_cache_storage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_cache/lib/memory_cache_storage.dart -------------------------------------------------------------------------------- /packages/system/vyuh_cache/lib/vyuh_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_cache/lib/vyuh_cache.dart -------------------------------------------------------------------------------- /packages/system/vyuh_cache/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_cache/pubspec.yaml -------------------------------------------------------------------------------- /packages/system/vyuh_cache/test/vyuh_cache_test.dart: -------------------------------------------------------------------------------- 1 | void main() {} 2 | -------------------------------------------------------------------------------- /packages/system/vyuh_content_widget/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_content_widget/.gitignore -------------------------------------------------------------------------------- /packages/system/vyuh_content_widget/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_content_widget/CHANGELOG.md -------------------------------------------------------------------------------- /packages/system/vyuh_content_widget/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_content_widget/LICENSE -------------------------------------------------------------------------------- /packages/system/vyuh_content_widget/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_content_widget/README.md -------------------------------------------------------------------------------- /packages/system/vyuh_content_widget/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_content_widget/build.yaml -------------------------------------------------------------------------------- /packages/system/vyuh_content_widget/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_content_widget/example/README.md -------------------------------------------------------------------------------- /packages/system/vyuh_content_widget/lib/document.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_content_widget/lib/document.dart -------------------------------------------------------------------------------- /packages/system/vyuh_content_widget/lib/document.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_content_widget/lib/document.g.dart -------------------------------------------------------------------------------- /packages/system/vyuh_content_widget/lib/widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_content_widget/lib/widget.dart -------------------------------------------------------------------------------- /packages/system/vyuh_content_widget/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_content_widget/pubspec.yaml -------------------------------------------------------------------------------- /packages/system/vyuh_content_widget/test/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_content_widget/test/utils.dart -------------------------------------------------------------------------------- /packages/system/vyuh_core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/.gitignore -------------------------------------------------------------------------------- /packages/system/vyuh_core/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/CHANGELOG.md -------------------------------------------------------------------------------- /packages/system/vyuh_core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/LICENSE -------------------------------------------------------------------------------- /packages/system/vyuh_core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/README.md -------------------------------------------------------------------------------- /packages/system/vyuh_core/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/build.yaml -------------------------------------------------------------------------------- /packages/system/vyuh_core/lib/asserts.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/lib/asserts.dart -------------------------------------------------------------------------------- /packages/system/vyuh_core/lib/extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/lib/extension.dart -------------------------------------------------------------------------------- /packages/system/vyuh_core/lib/feature_descriptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/lib/feature_descriptor.dart -------------------------------------------------------------------------------- /packages/system/vyuh_core/lib/plugin/auth/auth_plugin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/lib/plugin/auth/auth_plugin.dart -------------------------------------------------------------------------------- /packages/system/vyuh_core/lib/plugin/auth/exceptions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/lib/plugin/auth/exceptions.dart -------------------------------------------------------------------------------- /packages/system/vyuh_core/lib/plugin/auth/user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/lib/plugin/auth/user.dart -------------------------------------------------------------------------------- /packages/system/vyuh_core/lib/plugin/content/reference.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/lib/plugin/content/reference.dart -------------------------------------------------------------------------------- /packages/system/vyuh_core/lib/plugin/content/reference.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/lib/plugin/content/reference.g.dart -------------------------------------------------------------------------------- /packages/system/vyuh_core/lib/plugin/content/route_base.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/lib/plugin/content/route_base.dart -------------------------------------------------------------------------------- /packages/system/vyuh_core/lib/plugin/content/unknown.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/lib/plugin/content/unknown.dart -------------------------------------------------------------------------------- /packages/system/vyuh_core/lib/plugin/content/unknown.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/lib/plugin/content/unknown.g.dart -------------------------------------------------------------------------------- /packages/system/vyuh_core/lib/plugin/di/di_plugin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/lib/plugin/di/di_plugin.dart -------------------------------------------------------------------------------- /packages/system/vyuh_core/lib/plugin/di/plugin_di_get_it.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/lib/plugin/di/plugin_di_get_it.dart -------------------------------------------------------------------------------- /packages/system/vyuh_core/lib/plugin/env/env_plugin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/lib/plugin/env/env_plugin.dart -------------------------------------------------------------------------------- /packages/system/vyuh_core/lib/plugin/env/noop_env_plugin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/lib/plugin/env/noop_env_plugin.dart -------------------------------------------------------------------------------- /packages/system/vyuh_core/lib/plugin/event_plugin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/lib/plugin/event_plugin.dart -------------------------------------------------------------------------------- /packages/system/vyuh_core/lib/plugin/feature_flag.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/lib/plugin/feature_flag.dart -------------------------------------------------------------------------------- /packages/system/vyuh_core/lib/plugin/i18n/i18n.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/lib/plugin/i18n/i18n.dart -------------------------------------------------------------------------------- /packages/system/vyuh_core/lib/plugin/i18n/locale_plugin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/lib/plugin/i18n/locale_plugin.dart -------------------------------------------------------------------------------- /packages/system/vyuh_core/lib/plugin/plugin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/lib/plugin/plugin.dart -------------------------------------------------------------------------------- /packages/system/vyuh_core/lib/plugin/plugin_descriptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/lib/plugin/plugin_descriptor.dart -------------------------------------------------------------------------------- /packages/system/vyuh_core/lib/plugin/storage/storage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/lib/plugin/storage/storage.dart -------------------------------------------------------------------------------- /packages/system/vyuh_core/lib/plugin/telemetry/logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/lib/plugin/telemetry/logger.dart -------------------------------------------------------------------------------- /packages/system/vyuh_core/lib/runtime/cms_route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/lib/runtime/cms_route.dart -------------------------------------------------------------------------------- /packages/system/vyuh_core/lib/runtime/init_tracker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/lib/runtime/init_tracker.dart -------------------------------------------------------------------------------- /packages/system/vyuh_core/lib/runtime/platform/events.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/lib/runtime/platform/events.dart -------------------------------------------------------------------------------- /packages/system/vyuh_core/lib/runtime/run_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/lib/runtime/run_app.dart -------------------------------------------------------------------------------- /packages/system/vyuh_core/lib/runtime/vyuh_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/lib/runtime/vyuh_binding.dart -------------------------------------------------------------------------------- /packages/system/vyuh_core/lib/vyuh_core.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/lib/vyuh_core.dart -------------------------------------------------------------------------------- /packages/system/vyuh_core/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/pubspec.yaml -------------------------------------------------------------------------------- /packages/system/vyuh_core/test/event_plugin_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/test/event_plugin_test.dart -------------------------------------------------------------------------------- /packages/system/vyuh_core/test/network_plugin_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/test/network_plugin_test.dart -------------------------------------------------------------------------------- /packages/system/vyuh_core/test/telemetry_plugin_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/test/telemetry_plugin_test.dart -------------------------------------------------------------------------------- /packages/system/vyuh_core/test/vyuh_platform_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_core/test/vyuh_platform_test.dart -------------------------------------------------------------------------------- /packages/system/vyuh_extension_content/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_extension_content/.gitignore -------------------------------------------------------------------------------- /packages/system/vyuh_extension_content/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_extension_content/CHANGELOG.md -------------------------------------------------------------------------------- /packages/system/vyuh_extension_content/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_extension_content/LICENSE -------------------------------------------------------------------------------- /packages/system/vyuh_extension_content/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_extension_content/README.md -------------------------------------------------------------------------------- /packages/system/vyuh_extension_content/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_extension_content/analysis_options.yaml -------------------------------------------------------------------------------- /packages/system/vyuh_extension_content/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_extension_content/build.yaml -------------------------------------------------------------------------------- /packages/system/vyuh_extension_content/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_extension_content/pubspec.yaml -------------------------------------------------------------------------------- /packages/system/vyuh_extension_content/test/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_extension_content/test/utils.dart -------------------------------------------------------------------------------- /packages/system/vyuh_extension_content/test/vyuh_extension_content_test.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /packages/system/vyuh_feature_auth/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_auth/.gitignore -------------------------------------------------------------------------------- /packages/system/vyuh_feature_auth/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_auth/CHANGELOG.md -------------------------------------------------------------------------------- /packages/system/vyuh_feature_auth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_auth/LICENSE -------------------------------------------------------------------------------- /packages/system/vyuh_feature_auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_auth/README.md -------------------------------------------------------------------------------- /packages/system/vyuh_feature_auth/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_auth/build.yaml -------------------------------------------------------------------------------- /packages/system/vyuh_feature_auth/lib/feature.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_auth/lib/feature.dart -------------------------------------------------------------------------------- /packages/system/vyuh_feature_auth/lib/ui/form_fields.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_auth/lib/ui/form_fields.dart -------------------------------------------------------------------------------- /packages/system/vyuh_feature_auth/lib/ui/phone_otp_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_auth/lib/ui/phone_otp_view.dart -------------------------------------------------------------------------------- /packages/system/vyuh_feature_auth/lib/ui/social_icons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_auth/lib/ui/social_icons.dart -------------------------------------------------------------------------------- /packages/system/vyuh_feature_auth/lib/vyuh_feature_auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_auth/lib/vyuh_feature_auth.dart -------------------------------------------------------------------------------- /packages/system/vyuh_feature_auth/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_auth/pubspec.yaml -------------------------------------------------------------------------------- /packages/system/vyuh_feature_auth/test/vyuh_feature_firebase_auth_test.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /packages/system/vyuh_feature_developer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_developer/.gitignore -------------------------------------------------------------------------------- /packages/system/vyuh_feature_developer/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_developer/CHANGELOG.md -------------------------------------------------------------------------------- /packages/system/vyuh_feature_developer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_developer/LICENSE -------------------------------------------------------------------------------- /packages/system/vyuh_feature_developer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_developer/README.md -------------------------------------------------------------------------------- /packages/system/vyuh_feature_developer/example/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_developer/example/main.dart -------------------------------------------------------------------------------- /packages/system/vyuh_feature_developer/lib/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_developer/lib/routes.dart -------------------------------------------------------------------------------- /packages/system/vyuh_feature_developer/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_developer/pubspec.yaml -------------------------------------------------------------------------------- /packages/system/vyuh_feature_developer/test/vyuh_feature_developer_test.dart: -------------------------------------------------------------------------------- 1 | void main() {} 2 | -------------------------------------------------------------------------------- /packages/system/vyuh_feature_onboarding/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_onboarding/.gitignore -------------------------------------------------------------------------------- /packages/system/vyuh_feature_onboarding/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_onboarding/CHANGELOG.md -------------------------------------------------------------------------------- /packages/system/vyuh_feature_onboarding/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_onboarding/LICENSE -------------------------------------------------------------------------------- /packages/system/vyuh_feature_onboarding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_onboarding/README.md -------------------------------------------------------------------------------- /packages/system/vyuh_feature_onboarding/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_onboarding/build.yaml -------------------------------------------------------------------------------- /packages/system/vyuh_feature_onboarding/lib/feature.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_onboarding/lib/feature.dart -------------------------------------------------------------------------------- /packages/system/vyuh_feature_onboarding/lib/onboarding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_onboarding/lib/onboarding.dart -------------------------------------------------------------------------------- /packages/system/vyuh_feature_onboarding/lib/onboarding.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_onboarding/lib/onboarding.g.dart -------------------------------------------------------------------------------- /packages/system/vyuh_feature_onboarding/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_onboarding/pubspec.yaml -------------------------------------------------------------------------------- /packages/system/vyuh_feature_onboarding/test/vyuh_feature_onboarding_test.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /packages/system/vyuh_feature_system/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_system/.gitignore -------------------------------------------------------------------------------- /packages/system/vyuh_feature_system/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_system/CHANGELOG.md -------------------------------------------------------------------------------- /packages/system/vyuh_feature_system/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_system/LICENSE -------------------------------------------------------------------------------- /packages/system/vyuh_feature_system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_system/README.md -------------------------------------------------------------------------------- /packages/system/vyuh_feature_system/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_system/build.yaml -------------------------------------------------------------------------------- /packages/system/vyuh_feature_system/lib/action/alert.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_system/lib/action/alert.dart -------------------------------------------------------------------------------- /packages/system/vyuh_feature_system/lib/action/alert.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_system/lib/action/alert.g.dart -------------------------------------------------------------------------------- /packages/system/vyuh_feature_system/lib/action/delay.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_system/lib/action/delay.dart -------------------------------------------------------------------------------- /packages/system/vyuh_feature_system/lib/action/delay.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_system/lib/action/delay.g.dart -------------------------------------------------------------------------------- /packages/system/vyuh_feature_system/lib/action/drawer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_system/lib/action/drawer.dart -------------------------------------------------------------------------------- /packages/system/vyuh_feature_system/lib/action/drawer.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_system/lib/action/drawer.g.dart -------------------------------------------------------------------------------- /packages/system/vyuh_feature_system/lib/action/open_url.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_system/lib/action/open_url.dart -------------------------------------------------------------------------------- /packages/system/vyuh_feature_system/lib/action/restart.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_system/lib/action/restart.dart -------------------------------------------------------------------------------- /packages/system/vyuh_feature_system/lib/action/restart.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_system/lib/action/restart.g.dart -------------------------------------------------------------------------------- /packages/system/vyuh_feature_system/lib/action/snack_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_system/lib/action/snack_bar.dart -------------------------------------------------------------------------------- /packages/system/vyuh_feature_system/lib/content/divider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_system/lib/content/divider.dart -------------------------------------------------------------------------------- /packages/system/vyuh_feature_system/lib/content/empty.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_system/lib/content/empty.dart -------------------------------------------------------------------------------- /packages/system/vyuh_feature_system/lib/content/empty.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_system/lib/content/empty.g.dart -------------------------------------------------------------------------------- /packages/system/vyuh_feature_system/lib/content/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_system/lib/content/index.dart -------------------------------------------------------------------------------- /packages/system/vyuh_feature_system/lib/feature.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_system/lib/feature.dart -------------------------------------------------------------------------------- /packages/system/vyuh_feature_system/lib/ui/carousel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_system/lib/ui/carousel.dart -------------------------------------------------------------------------------- /packages/system/vyuh_feature_system/lib/ui/content_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_system/lib/ui/content_image.dart -------------------------------------------------------------------------------- /packages/system/vyuh_feature_system/lib/ui/dialog_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_system/lib/ui/dialog_page.dart -------------------------------------------------------------------------------- /packages/system/vyuh_feature_system/lib/ui/press_effect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_system/lib/ui/press_effect.dart -------------------------------------------------------------------------------- /packages/system/vyuh_feature_system/lib/ui/text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_system/lib/ui/text.dart -------------------------------------------------------------------------------- /packages/system/vyuh_feature_system/lib/ui/web_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_system/lib/ui/web_view.dart -------------------------------------------------------------------------------- /packages/system/vyuh_feature_system/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_feature_system/pubspec.yaml -------------------------------------------------------------------------------- /packages/system/vyuh_feature_system/test/vyuh_feature_essentials_test.dart: -------------------------------------------------------------------------------- 1 | void main() {} 2 | -------------------------------------------------------------------------------- /packages/system/vyuh_test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_test/.gitignore -------------------------------------------------------------------------------- /packages/system/vyuh_test/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_test/CHANGELOG.md -------------------------------------------------------------------------------- /packages/system/vyuh_test/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_test/LICENSE -------------------------------------------------------------------------------- /packages/system/vyuh_test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_test/README.md -------------------------------------------------------------------------------- /packages/system/vyuh_test/lib/ready_check.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_test/lib/ready_check.dart -------------------------------------------------------------------------------- /packages/system/vyuh_test/lib/test_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_test/lib/test_utils.dart -------------------------------------------------------------------------------- /packages/system/vyuh_test/lib/vyuh_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_test/lib/vyuh_test.dart -------------------------------------------------------------------------------- /packages/system/vyuh_test/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_test/pubspec.yaml -------------------------------------------------------------------------------- /packages/system/vyuh_test/test/vyuh_test_test.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /packages/system/vyuh_widgetbook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_widgetbook/.gitignore -------------------------------------------------------------------------------- /packages/system/vyuh_widgetbook/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_widgetbook/CHANGELOG.md -------------------------------------------------------------------------------- /packages/system/vyuh_widgetbook/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_widgetbook/LICENSE -------------------------------------------------------------------------------- /packages/system/vyuh_widgetbook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_widgetbook/README.md -------------------------------------------------------------------------------- /packages/system/vyuh_widgetbook/doc/images/widgetbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_widgetbook/doc/images/widgetbook.png -------------------------------------------------------------------------------- /packages/system/vyuh_widgetbook/example/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_widgetbook/example/example.md -------------------------------------------------------------------------------- /packages/system/vyuh_widgetbook/lib/shell.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_widgetbook/lib/shell.dart -------------------------------------------------------------------------------- /packages/system/vyuh_widgetbook/lib/ui/no_preview_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_widgetbook/lib/ui/no_preview_card.dart -------------------------------------------------------------------------------- /packages/system/vyuh_widgetbook/lib/vyuh_widgetbook.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_widgetbook/lib/vyuh_widgetbook.dart -------------------------------------------------------------------------------- /packages/system/vyuh_widgetbook/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/system/vyuh_widgetbook/pubspec.yaml -------------------------------------------------------------------------------- /packages/vyuh_cli/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/.gitignore -------------------------------------------------------------------------------- /packages/vyuh_cli/.pubignore: -------------------------------------------------------------------------------- 1 | bricks/ 2 | -------------------------------------------------------------------------------- /packages/vyuh_cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/CHANGELOG.md -------------------------------------------------------------------------------- /packages/vyuh_cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/LICENSE -------------------------------------------------------------------------------- /packages/vyuh_cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/README.md -------------------------------------------------------------------------------- /packages/vyuh_cli/_images/vyuh_cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/_images/vyuh_cli.png -------------------------------------------------------------------------------- /packages/vyuh_cli/_images/vyuh_cli_doctor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/_images/vyuh_cli_doctor.png -------------------------------------------------------------------------------- /packages/vyuh_cli/bin/vyuh.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/bin/vyuh.dart -------------------------------------------------------------------------------- /packages/vyuh_cli/bricks/vyuh_feature/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 0.1.0+1 2 | 3 | - TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /packages/vyuh_cli/bricks/vyuh_feature/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /packages/vyuh_cli/bricks/vyuh_feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/bricks/vyuh_feature/README.md -------------------------------------------------------------------------------- /packages/vyuh_cli/bricks/vyuh_feature/__brick__/{{ name.snakeCase() }}/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.0.0 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /packages/vyuh_cli/bricks/vyuh_feature/__brick__/{{ name.snakeCase() }}/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /packages/vyuh_cli/bricks/vyuh_feature/__brick__/{{ name.snakeCase() }}/README.md: -------------------------------------------------------------------------------- 1 | # {{ name.titleCase() }} 2 | 3 | Describe your feature in more detail here. 4 | -------------------------------------------------------------------------------- /packages/vyuh_cli/bricks/vyuh_feature/__brick__/{{ name.snakeCase() }}/lib/{{ name.snakeCase() }}.dart: -------------------------------------------------------------------------------- 1 | library {{ name.snakeCase() }}; 2 | 3 | export 'feature.dart'; 4 | -------------------------------------------------------------------------------- /packages/vyuh_cli/bricks/vyuh_feature/__brick__/{{ name.snakeCase() }}/test/{{ name.snakeCase() }}_test.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /packages/vyuh_cli/bricks/vyuh_feature/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/bricks/vyuh_feature/brick.yaml -------------------------------------------------------------------------------- /packages/vyuh_cli/bricks/vyuh_feature/hooks/post_gen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/bricks/vyuh_feature/hooks/post_gen.dart -------------------------------------------------------------------------------- /packages/vyuh_cli/bricks/vyuh_feature/hooks/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/bricks/vyuh_feature/hooks/pubspec.yaml -------------------------------------------------------------------------------- /packages/vyuh_cli/bricks/vyuh_feature_sanity_schema/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/bricks/vyuh_feature_sanity_schema/LICENSE -------------------------------------------------------------------------------- /packages/vyuh_cli/bricks/vyuh_feature_sanity_schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/bricks/vyuh_feature_sanity_schema/README.md -------------------------------------------------------------------------------- /packages/vyuh_cli/bricks/vyuh_feature_sanity_schema/__brick__/{{ name.paramCase() }}/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # {{ name.paramCase() }} 2 | -------------------------------------------------------------------------------- /packages/vyuh_cli/bricks/vyuh_item/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/bricks/vyuh_item/README.md -------------------------------------------------------------------------------- /packages/vyuh_cli/bricks/vyuh_item/__brick__/{{item_name.snakeCase()}}.g.dart: -------------------------------------------------------------------------------- 1 | // GENERATED CODE - DO NOT MODIFY BY HAND 2 | 3 | // ignore_for_file: unused_element 4 | -------------------------------------------------------------------------------- /packages/vyuh_cli/bricks/vyuh_item/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/bricks/vyuh_item/brick.yaml -------------------------------------------------------------------------------- /packages/vyuh_cli/bricks/vyuh_project/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 2 | 3 | - Initial release for building a Vyuh App 4 | -------------------------------------------------------------------------------- /packages/vyuh_cli/bricks/vyuh_project/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/bricks/vyuh_project/LICENSE -------------------------------------------------------------------------------- /packages/vyuh_cli/bricks/vyuh_project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/bricks/vyuh_project/README.md -------------------------------------------------------------------------------- /packages/vyuh_cli/bricks/vyuh_project/__brick__/{{ name.snakeCase() }}/features/counter/feature_counter/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.0.0 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /packages/vyuh_cli/bricks/vyuh_project/__brick__/{{ name.snakeCase() }}/features/counter/feature_counter/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /packages/vyuh_cli/bricks/vyuh_project/__brick__/{{ name.snakeCase() }}/features/counter/feature_counter/test/feature_counter_test.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /packages/vyuh_cli/bricks/vyuh_project/__brick__/{{ name.snakeCase() }}/overrides/.env: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/vyuh_cli/bricks/vyuh_project/__brick__/{{ name.snakeCase() }}/packages/README.md: -------------------------------------------------------------------------------- 1 | # Put all your shared packages in this folder 2 | -------------------------------------------------------------------------------- /packages/vyuh_cli/bricks/vyuh_project/__brick__/{{ name.snakeCase() }}/plugins/README.md: -------------------------------------------------------------------------------- 1 | # Put all your plugins in this folder 2 | -------------------------------------------------------------------------------- /packages/vyuh_cli/bricks/vyuh_project/brick.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/bricks/vyuh_project/brick.yaml -------------------------------------------------------------------------------- /packages/vyuh_cli/bricks/vyuh_project/hooks/post_gen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/bricks/vyuh_project/hooks/post_gen.dart -------------------------------------------------------------------------------- /packages/vyuh_cli/bricks/vyuh_project/hooks/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/bricks/vyuh_project/hooks/pubspec.yaml -------------------------------------------------------------------------------- /packages/vyuh_cli/dart_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/dart_test.yaml -------------------------------------------------------------------------------- /packages/vyuh_cli/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/example/README.md -------------------------------------------------------------------------------- /packages/vyuh_cli/justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/justfile -------------------------------------------------------------------------------- /packages/vyuh_cli/lib/command_runner.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/lib/command_runner.dart -------------------------------------------------------------------------------- /packages/vyuh_cli/lib/commands/create/command.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/lib/commands/create/command.dart -------------------------------------------------------------------------------- /packages/vyuh_cli/lib/commands/create/feature/command.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/lib/commands/create/feature/command.dart -------------------------------------------------------------------------------- /packages/vyuh_cli/lib/commands/create/feature/template.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/lib/commands/create/feature/template.dart -------------------------------------------------------------------------------- /packages/vyuh_cli/lib/commands/create/item/command.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/lib/commands/create/item/command.dart -------------------------------------------------------------------------------- /packages/vyuh_cli/lib/commands/create/item/template.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/lib/commands/create/item/template.dart -------------------------------------------------------------------------------- /packages/vyuh_cli/lib/commands/create/project/command.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/lib/commands/create/project/command.dart -------------------------------------------------------------------------------- /packages/vyuh_cli/lib/commands/create/project/template.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/lib/commands/create/project/template.dart -------------------------------------------------------------------------------- /packages/vyuh_cli/lib/commands/create/schema/command.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/lib/commands/create/schema/command.dart -------------------------------------------------------------------------------- /packages/vyuh_cli/lib/commands/create/schema/template.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/lib/commands/create/schema/template.dart -------------------------------------------------------------------------------- /packages/vyuh_cli/lib/commands/doctor/command.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/lib/commands/doctor/command.dart -------------------------------------------------------------------------------- /packages/vyuh_cli/lib/commands/doctor/src/doctor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/lib/commands/doctor/src/doctor.dart -------------------------------------------------------------------------------- /packages/vyuh_cli/lib/commands/doctor/src/utils/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/lib/commands/doctor/src/utils/utils.dart -------------------------------------------------------------------------------- /packages/vyuh_cli/lib/commands/update/command.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/lib/commands/update/command.dart -------------------------------------------------------------------------------- /packages/vyuh_cli/lib/template.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/lib/template.dart -------------------------------------------------------------------------------- /packages/vyuh_cli/lib/utils/logger_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/lib/utils/logger_extension.dart -------------------------------------------------------------------------------- /packages/vyuh_cli/lib/utils/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/lib/utils/utils.dart -------------------------------------------------------------------------------- /packages/vyuh_cli/lib/version.dart: -------------------------------------------------------------------------------- 1 | // Generated code. Do not modify. 2 | const packageVersion = '0.0.13'; 3 | -------------------------------------------------------------------------------- /packages/vyuh_cli/lib/vyuh_cli.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/lib/vyuh_cli.dart -------------------------------------------------------------------------------- /packages/vyuh_cli/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/pubspec.yaml -------------------------------------------------------------------------------- /packages/vyuh_cli/test/ensure_build_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/test/ensure_build_test.dart -------------------------------------------------------------------------------- /packages/vyuh_cli/test/src/command_runner_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/test/src/command_runner_test.dart -------------------------------------------------------------------------------- /packages/vyuh_cli/test/src/commands/update_command_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/packages/vyuh_cli/test/src/commands/update_command_test.dart -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /schemas/vyuh-sanity-schema-auth/.eslintrc.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/schemas/vyuh-sanity-schema-auth/.eslintrc.mjs -------------------------------------------------------------------------------- /schemas/vyuh-sanity-schema-auth/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/schemas/vyuh-sanity-schema-auth/CHANGELOG.md -------------------------------------------------------------------------------- /schemas/vyuh-sanity-schema-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/schemas/vyuh-sanity-schema-auth/README.md -------------------------------------------------------------------------------- /schemas/vyuh-sanity-schema-auth/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/schemas/vyuh-sanity-schema-auth/package.json -------------------------------------------------------------------------------- /schemas/vyuh-sanity-schema-auth/src/card.layout.authUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/schemas/vyuh-sanity-schema-auth/src/card.layout.authUser.tsx -------------------------------------------------------------------------------- /schemas/vyuh-sanity-schema-auth/src/content/oauth-signin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/schemas/vyuh-sanity-schema-auth/src/content/oauth-signin.ts -------------------------------------------------------------------------------- /schemas/vyuh-sanity-schema-auth/src/content/phone-otp-form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/schemas/vyuh-sanity-schema-auth/src/content/phone-otp-form.ts -------------------------------------------------------------------------------- /schemas/vyuh-sanity-schema-auth/src/content/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/schemas/vyuh-sanity-schema-auth/src/content/util.ts -------------------------------------------------------------------------------- /schemas/vyuh-sanity-schema-auth/src/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/schemas/vyuh-sanity-schema-auth/src/feature.ts -------------------------------------------------------------------------------- /schemas/vyuh-sanity-schema-auth/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/schemas/vyuh-sanity-schema-auth/src/index.ts -------------------------------------------------------------------------------- /schemas/vyuh-sanity-schema-auth/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/schemas/vyuh-sanity-schema-auth/tsconfig.json -------------------------------------------------------------------------------- /schemas/vyuh-sanity-schema-auth/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/schemas/vyuh-sanity-schema-auth/tsup.config.ts -------------------------------------------------------------------------------- /schemas/vyuh-sanity-schema-onboarding/.eslintrc.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/schemas/vyuh-sanity-schema-onboarding/.eslintrc.mjs -------------------------------------------------------------------------------- /schemas/vyuh-sanity-schema-onboarding/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/schemas/vyuh-sanity-schema-onboarding/.gitignore -------------------------------------------------------------------------------- /schemas/vyuh-sanity-schema-onboarding/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/schemas/vyuh-sanity-schema-onboarding/.npmignore -------------------------------------------------------------------------------- /schemas/vyuh-sanity-schema-onboarding/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/schemas/vyuh-sanity-schema-onboarding/CHANGELOG.md -------------------------------------------------------------------------------- /schemas/vyuh-sanity-schema-onboarding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/schemas/vyuh-sanity-schema-onboarding/README.md -------------------------------------------------------------------------------- /schemas/vyuh-sanity-schema-onboarding/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/schemas/vyuh-sanity-schema-onboarding/package.json -------------------------------------------------------------------------------- /schemas/vyuh-sanity-schema-onboarding/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/schemas/vyuh-sanity-schema-onboarding/src/index.ts -------------------------------------------------------------------------------- /schemas/vyuh-sanity-schema-onboarding/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/schemas/vyuh-sanity-schema-onboarding/tsconfig.json -------------------------------------------------------------------------------- /schemas/vyuh-sanity-schema-onboarding/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/schemas/vyuh-sanity-schema-onboarding/tsup.config.ts -------------------------------------------------------------------------------- /tools/update_version.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vyuh-tech/vyuh/HEAD/tools/update_version.dart --------------------------------------------------------------------------------