├── .github └── workflows │ └── autobug.yaml ├── .gitignore ├── .vscode └── launch.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-playstore.png │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── at_wavi_app │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── ic_launcher_foreground.png │ │ │ └── notification_icon.png │ │ │ ├── drawable-mdpi │ │ │ ├── ic_launcher_foreground.png │ │ │ └── notification_icon.png │ │ │ ├── drawable-xhdpi │ │ │ ├── ic_launcher_foreground.png │ │ │ └── notification_icon.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── ic_launcher_foreground.png │ │ │ └── notification_icon.png │ │ │ ├── drawable-xxxhdpi │ │ │ ├── ic_launcher_foreground.png │ │ │ └── notification_icon.png │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── launch_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap │ │ │ └── screen.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── app-icon.png ├── assets ├── fonts │ ├── PlayfairDisplay-Bold.ttf │ └── inter │ │ ├── Inter-Black.ttf │ │ ├── Inter-Bold.ttf │ │ ├── Inter-ExtraBold.ttf │ │ ├── Inter-ExtraLight.ttf │ │ ├── Inter-Light.ttf │ │ ├── Inter-Medium.ttf │ │ ├── Inter-Regular.ttf │ │ ├── Inter-SemiBold.ttf │ │ └── Inter-Thin.ttf └── images │ ├── at_icon.png │ ├── faqs.png │ ├── info1.png │ ├── info3.png │ ├── info4.png │ ├── intro_additional_detail.png │ ├── intro_basic_detail.png │ ├── intro_game_channel.png │ ├── intro_location.png │ ├── intro_media.png │ ├── intro_social_channel.png │ ├── login1.png │ ├── login2.png │ ├── login3.png │ ├── logo_dark.png │ ├── logo_light.png │ ├── logout.png │ ├── persona_icon.png │ ├── private_profile.png │ ├── splash_1.png │ ├── splash_2.png │ ├── terms.png │ └── welcome_banner.png ├── code_of_conduct.md ├── images ├── image1.png ├── image2.png ├── image3.png ├── image4.png ├── image5.png ├── image6.png └── image7.png ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Gemfile ├── Gemfile.lock ├── 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 │ │ │ ├── app_icon-1024.png │ │ │ ├── app_icon-20.png │ │ │ ├── app_icon-20@2x.png │ │ │ ├── app_icon-20@3x.png │ │ │ ├── app_icon-29.png │ │ │ ├── app_icon-29@2x.png │ │ │ ├── app_icon-29@3x.png │ │ │ ├── app_icon-40.png │ │ │ ├── app_icon-40@2x.png │ │ │ ├── app_icon-40@3x.png │ │ │ ├── app_icon-60@2x.png │ │ │ ├── app_icon-60@3x.png │ │ │ ├── app_icon-76.png │ │ │ ├── app_icon-76@2x.png │ │ │ └── app_icon-83.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 │ └── Runner.entitlements ├── Share Extension │ ├── Base.lproj │ │ └── MainInterface.storyboard │ ├── Info.plist │ ├── Share Extension.entitlements │ └── ShareViewController.swift └── fastlane │ └── Fastfile ├── lib ├── app.dart ├── common_components │ ├── add_custom_content_button.dart │ ├── confirmation_dialog.dart │ ├── contact_initial.dart │ ├── content_edit_field_card.dart │ ├── create_marker.dart │ ├── custom_button.dart │ ├── custom_card.dart │ ├── custom_input_field.dart │ ├── custom_media_card.dart │ ├── custom_popup_route.dart │ ├── empty_widget.dart │ ├── error_dialog.dart │ ├── header.dart │ ├── loading_widget.dart │ ├── media_content_edit_card.dart │ ├── person_horizontal_tile.dart │ ├── provider_callback.dart │ ├── provider_handler.dart │ ├── public_private_bottomsheet.dart │ ├── qr_scanner.dart │ ├── switch_at_sign.dart │ ├── text_tile.dart │ └── triple_dot_loading.dart ├── desktop │ ├── routes │ │ ├── desktop_route_names.dart │ │ └── desktop_routes.dart │ ├── screens │ │ ├── desktop_appearance │ │ │ ├── color_setting │ │ │ │ ├── desktop_color_setting_page.dart │ │ │ │ └── widgets │ │ │ │ │ └── desktop_color_card.dart │ │ │ ├── desktop_appearance_model.dart │ │ │ ├── desktop_appearance_page.dart │ │ │ └── theme_setting │ │ │ │ ├── desktop_theme_setting_page.dart │ │ │ │ └── widgets │ │ │ │ └── desktop_theme_card.dart │ │ ├── desktop_common │ │ │ ├── crop_editor_helper.dart │ │ │ ├── desktop_crop_image_page.dart │ │ │ └── desktop_dialog_page.dart │ │ ├── desktop_edit_profile │ │ │ ├── desktop_edit_profile_model.dart │ │ │ ├── desktop_edit_profile_page.dart │ │ │ ├── desktop_profile_picture │ │ │ │ └── desktop_profile_picture_page.dart │ │ │ ├── desktop_side_menu.dart │ │ │ └── widgets │ │ │ │ └── desktop_side_menu_widget.dart │ │ ├── desktop_location │ │ │ ├── desktop_location_preview_page.dart │ │ │ └── desktop_search_location │ │ │ │ ├── desktop_search_location_model.dart │ │ │ │ └── desktop_search_location_page.dart │ │ ├── desktop_login │ │ │ ├── desktop_login_landing_page.dart │ │ │ ├── desktop_login_model.dart │ │ │ ├── desktop_login_otp │ │ │ │ └── desktop_login_otp_page.dart │ │ │ ├── desktop_login_page.dart │ │ │ └── desktop_onboarding_page.dart │ │ ├── desktop_my_profile │ │ │ ├── desktop_follow │ │ │ │ ├── desktop_follow_page.dart │ │ │ │ ├── desktop_followers_page.dart │ │ │ │ └── widgets │ │ │ │ │ ├── desktop_atsign_widget.dart │ │ │ │ │ └── desktop_user_widget.dart │ │ │ ├── desktop_my_profile_page.dart │ │ │ ├── desktop_profile_channels │ │ │ │ └── desktop_profile_channels_page.dart │ │ │ ├── desktop_profile_data_page.dart │ │ │ ├── desktop_profile_details │ │ │ │ └── desktop_profile_details_page.dart │ │ │ ├── desktop_search_atsign │ │ │ │ ├── desktop_search_atsign_model.dart │ │ │ │ └── desktop_search_atsign_page.dart │ │ │ ├── desktop_settings │ │ │ │ ├── desktop_settings_page.dart │ │ │ │ ├── desktop_switch_account │ │ │ │ │ └── desktop_switch_account_page.dart │ │ │ │ └── widgets │ │ │ │ │ ├── desktop_setting_switch_widget.dart │ │ │ │ │ └── desktop_setting_widget.dart │ │ │ └── widgets │ │ │ │ └── desktop_profile_tabbar.dart │ │ ├── desktop_notification │ │ │ ├── desktop_new_request_page.dart │ │ │ ├── desktop_notification_list_page.dart │ │ │ ├── desktop_notification_page.dart │ │ │ └── item │ │ │ │ ├── desktop_new_request_item.dart │ │ │ │ └── desktop_notification_item.dart │ │ ├── desktop_profile_basic_info │ │ │ ├── desktop_add_location │ │ │ │ ├── desktop_add_location_model.dart │ │ │ │ └── desktop_add_location_page.dart │ │ │ ├── desktop_edit_basic_detail │ │ │ │ ├── desktop_edit_basic_detail_model.dart │ │ │ │ └── desktop_edit_basic_detail_page.dart │ │ │ ├── desktop_profile_add_custom_field │ │ │ │ ├── desktop_profile_add_custom_field.dart │ │ │ │ ├── desktop_profile_add_custom_field_model.dart │ │ │ │ └── widgets │ │ │ │ │ ├── desktop_html_editor_page.dart │ │ │ │ │ └── desktop_html_preview_page.dart │ │ │ ├── desktop_profile_basic_info_page.dart │ │ │ ├── desktop_profile_media │ │ │ │ ├── desktop_profile_media_model.dart │ │ │ │ ├── desktop_profile_media_page.dart │ │ │ │ └── widgets │ │ │ │ │ └── desktop_media_item.dart │ │ │ ├── desktop_reorder_basic_info │ │ │ │ ├── desktop_reorder_basic_info_model.dart │ │ │ │ ├── desktop_reorder_basic_info_page.dart │ │ │ │ └── widgets │ │ │ │ │ └── desktop_reorderable_item_widget.dart │ │ │ ├── desktop_select_location │ │ │ │ └── desktop_select_location_page.dart │ │ │ └── widgets │ │ │ │ ├── desktop_basic_info_widget.dart │ │ │ │ ├── desktop_empty_category_widget.dart │ │ │ │ ├── desktop_location_item_widget.dart │ │ │ │ └── desktop_media_item_widget.dart │ │ ├── desktop_share_profile │ │ │ └── desktop_share_profile_page.dart │ │ ├── desktop_tutorial │ │ │ ├── desktop_tutorial_page.dart │ │ │ └── widgets │ │ │ │ ├── desktop_tutorial_info_widget.dart │ │ │ │ └── desktop_tutorial_popup.dart │ │ └── desktop_user_profile │ │ │ ├── desktop_profile_info_page.dart │ │ │ ├── desktop_profile_private_page.dart │ │ │ └── desktop_user_profile_page.dart │ ├── services │ │ └── theme │ │ │ ├── app_theme.dart │ │ │ └── inherited_app_theme.dart │ ├── utils │ │ ├── desktop_dimens.dart │ │ ├── dialog_utils.dart │ │ ├── enums.dart │ │ ├── load_status.dart │ │ ├── logger.dart │ │ ├── mock_data.dart │ │ ├── shared_preferences_utils.dart │ │ ├── snackbar_utils.dart │ │ ├── strings.dart │ │ └── utils.dart │ └── widgets │ │ ├── buttons │ │ ├── desktop_icon_button.dart │ │ ├── desktop_icon_label_button.dart │ │ ├── desktop_preview_button.dart │ │ └── desktop_private_button.dart │ │ ├── desktop_avatar_widget.dart │ │ ├── desktop_button.dart │ │ ├── desktop_empty_widget.dart │ │ ├── desktop_logo.dart │ │ ├── desktop_main_tabbar.dart │ │ ├── desktop_show_hide_radio_button.dart │ │ ├── desktop_showcase_widget.dart │ │ ├── desktop_tabbar.dart │ │ ├── desktop_welcome_widget.dart │ │ ├── images │ │ ├── desktop_cached_image.dart │ │ └── desktop_circle_avatar.dart │ │ ├── passcode_widget.dart │ │ └── textfields │ │ ├── desktop_otp_textfield.dart │ │ └── desktop_textfield.dart ├── main.dart ├── model │ ├── at_follows_value.dart │ ├── basic_data_model.dart │ ├── here_result.dart │ ├── osm_location_model.dart │ ├── twitter.dart │ ├── user.dart │ └── version.dart ├── routes │ ├── route_names.dart │ └── routes.dart ├── screens │ ├── add_link │ │ ├── add_link.dart │ │ └── create_custom_add_link │ │ │ └── create_custom_add_link.dart │ ├── edit_persona │ │ ├── add_custom_field.dart │ │ ├── content_edit.dart │ │ ├── edit_category_fields.dart │ │ ├── edit_persona.dart │ │ ├── html_editor_screen.dart │ │ └── reorder_fields.dart │ ├── following.dart │ ├── home │ │ ├── home.dart │ │ └── widgets │ │ │ ├── Home_details.dart │ │ │ ├── home_channel.dart │ │ │ ├── home_empty_details.dart │ │ │ ├── home_featured.dart │ │ │ ├── home_private_account.dart │ │ │ └── twitter_embed_widget.dart │ ├── location │ │ ├── location_widget.dart │ │ └── widgets │ │ │ ├── create_custom_location.dart │ │ │ ├── preview_location.dart │ │ │ ├── select_location.dart │ │ │ └── selected_location.dart │ ├── options.dart │ ├── qr_screen.dart │ ├── search.dart │ ├── website_webview │ │ └── website_webview.dart │ └── welcome.dart ├── services │ ├── at_key_get_service.dart │ ├── at_key_set_service.dart │ ├── backend_service.dart │ ├── change_privacy_service.dart │ ├── common_functions.dart │ ├── compare_basicdata.dart │ ├── field_order_service.dart │ ├── image_picker.dart │ ├── nav_service.dart │ ├── search_service.dart │ ├── size_config.dart │ ├── theme_service.dart │ ├── twitter_service.dart │ └── version_service.dart ├── utils │ ├── at_enum.dart │ ├── at_key_constants.dart │ ├── colors.dart │ ├── constants.dart │ ├── field_names.dart │ ├── images.dart │ ├── text_constants.dart │ ├── text_styles.dart │ └── theme.dart └── view_models │ ├── base_model.dart │ ├── deep_link_provider.dart │ ├── follow_service.dart │ ├── internet_connectivity_checker.dart │ ├── theme_view_model.dart │ ├── user_preview.dart │ └── user_provider.dart ├── linux ├── .gitignore ├── CMakeLists.txt ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake ├── main.cc ├── my_application.cc └── my_application.h ├── macos ├── .gitignore ├── Flutter │ ├── Flutter-Debug.xcconfig │ ├── Flutter-Release.xcconfig │ └── GeneratedPluginRegistrant.swift ├── Podfile ├── Podfile.lock ├── 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 │ │ ├── image-1024.png │ │ ├── image-128.png │ │ ├── image-16.png │ │ ├── image-256.png │ │ ├── image-257.png │ │ ├── image-32.png │ │ ├── image-33.png │ │ ├── image-512.png │ │ ├── image-513.png │ │ └── image-64.png │ ├── Base.lproj │ └── MainMenu.xib │ ├── Configs │ ├── AppInfo.xcconfig │ ├── Debug.xcconfig │ ├── Release.xcconfig │ └── Warnings.xcconfig │ ├── DebugProfile.entitlements │ ├── Info.plist │ ├── MainFlutterWindow.swift │ └── Release.entitlements ├── pubspec.lock ├── pubspec.yaml ├── test └── widget_test.dart ├── web ├── favicon.png ├── icons │ ├── Icon-192.png │ └── Icon-512.png ├── index.html └── manifest.json └── windows ├── .gitignore ├── CMakeLists.txt ├── flutter ├── CMakeLists.txt ├── generated_plugin_registrant.cc ├── generated_plugin_registrant.h └── generated_plugins.cmake └── runner ├── CMakeLists.txt ├── Runner.rc ├── flutter_window.cpp ├── flutter_window.h ├── main.cpp ├── resource.h ├── resources └── app_icon.ico ├── runner.exe.manifest ├── utils.cpp ├── utils.h ├── win32_window.cpp └── win32_window.h /.github/workflows/autobug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/.github/workflows/autobug.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/SECURITY.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/at_wavi_app/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/main/kotlin/com/example/at_wavi_app/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/main/res/drawable-hdpi/notification_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/main/res/drawable-mdpi/notification_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/main/res/drawable-xhdpi/notification_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/main/res/drawable-xxhdpi/notification_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/main/res/drawable-xxxhdpi/notification_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/main/res/mipmap/screen.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/app-icon.png -------------------------------------------------------------------------------- /assets/fonts/PlayfairDisplay-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/assets/fonts/PlayfairDisplay-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/inter/Inter-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/assets/fonts/inter/Inter-Black.ttf -------------------------------------------------------------------------------- /assets/fonts/inter/Inter-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/assets/fonts/inter/Inter-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/inter/Inter-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/assets/fonts/inter/Inter-ExtraBold.ttf -------------------------------------------------------------------------------- /assets/fonts/inter/Inter-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/assets/fonts/inter/Inter-ExtraLight.ttf -------------------------------------------------------------------------------- /assets/fonts/inter/Inter-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/assets/fonts/inter/Inter-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/inter/Inter-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/assets/fonts/inter/Inter-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/inter/Inter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/assets/fonts/inter/Inter-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/inter/Inter-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/assets/fonts/inter/Inter-SemiBold.ttf -------------------------------------------------------------------------------- /assets/fonts/inter/Inter-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/assets/fonts/inter/Inter-Thin.ttf -------------------------------------------------------------------------------- /assets/images/at_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/assets/images/at_icon.png -------------------------------------------------------------------------------- /assets/images/faqs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/assets/images/faqs.png -------------------------------------------------------------------------------- /assets/images/info1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/assets/images/info1.png -------------------------------------------------------------------------------- /assets/images/info3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/assets/images/info3.png -------------------------------------------------------------------------------- /assets/images/info4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/assets/images/info4.png -------------------------------------------------------------------------------- /assets/images/intro_additional_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/assets/images/intro_additional_detail.png -------------------------------------------------------------------------------- /assets/images/intro_basic_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/assets/images/intro_basic_detail.png -------------------------------------------------------------------------------- /assets/images/intro_game_channel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/assets/images/intro_game_channel.png -------------------------------------------------------------------------------- /assets/images/intro_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/assets/images/intro_location.png -------------------------------------------------------------------------------- /assets/images/intro_media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/assets/images/intro_media.png -------------------------------------------------------------------------------- /assets/images/intro_social_channel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/assets/images/intro_social_channel.png -------------------------------------------------------------------------------- /assets/images/login1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/assets/images/login1.png -------------------------------------------------------------------------------- /assets/images/login2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/assets/images/login2.png -------------------------------------------------------------------------------- /assets/images/login3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/assets/images/login3.png -------------------------------------------------------------------------------- /assets/images/logo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/assets/images/logo_dark.png -------------------------------------------------------------------------------- /assets/images/logo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/assets/images/logo_light.png -------------------------------------------------------------------------------- /assets/images/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/assets/images/logout.png -------------------------------------------------------------------------------- /assets/images/persona_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/assets/images/persona_icon.png -------------------------------------------------------------------------------- /assets/images/private_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/assets/images/private_profile.png -------------------------------------------------------------------------------- /assets/images/splash_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/assets/images/splash_1.png -------------------------------------------------------------------------------- /assets/images/splash_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/assets/images/splash_2.png -------------------------------------------------------------------------------- /assets/images/terms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/assets/images/terms.png -------------------------------------------------------------------------------- /assets/images/welcome_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/assets/images/welcome_banner.png -------------------------------------------------------------------------------- /code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/code_of_conduct.md -------------------------------------------------------------------------------- /images/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/images/image1.png -------------------------------------------------------------------------------- /images/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/images/image2.png -------------------------------------------------------------------------------- /images/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/images/image3.png -------------------------------------------------------------------------------- /images/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/images/image4.png -------------------------------------------------------------------------------- /images/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/images/image5.png -------------------------------------------------------------------------------- /images/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/images/image6.png -------------------------------------------------------------------------------- /images/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/images/image7.png -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | -------------------------------------------------------------------------------- /ios/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Gemfile.lock -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/app_icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/app_icon-1024.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/app_icon-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/app_icon-20.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/app_icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/app_icon-20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/app_icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/app_icon-20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/app_icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/app_icon-29.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/app_icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/app_icon-29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/app_icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/app_icon-29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/app_icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/app_icon-40.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/app_icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/app_icon-40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/app_icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/app_icon-40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/app_icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/app_icon-60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/app_icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/app_icon-60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/app_icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/app_icon-76.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/app_icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/app_icon-76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/app_icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/app_icon-83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/Runner/Runner.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Runner/Runner.entitlements -------------------------------------------------------------------------------- /ios/Share Extension/Base.lproj/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Share Extension/Base.lproj/MainInterface.storyboard -------------------------------------------------------------------------------- /ios/Share Extension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Share Extension/Info.plist -------------------------------------------------------------------------------- /ios/Share Extension/Share Extension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Share Extension/Share Extension.entitlements -------------------------------------------------------------------------------- /ios/Share Extension/ShareViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/Share Extension/ShareViewController.swift -------------------------------------------------------------------------------- /ios/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/ios/fastlane/Fastfile -------------------------------------------------------------------------------- /lib/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/app.dart -------------------------------------------------------------------------------- /lib/common_components/add_custom_content_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/common_components/add_custom_content_button.dart -------------------------------------------------------------------------------- /lib/common_components/confirmation_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/common_components/confirmation_dialog.dart -------------------------------------------------------------------------------- /lib/common_components/contact_initial.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/common_components/contact_initial.dart -------------------------------------------------------------------------------- /lib/common_components/content_edit_field_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/common_components/content_edit_field_card.dart -------------------------------------------------------------------------------- /lib/common_components/create_marker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/common_components/create_marker.dart -------------------------------------------------------------------------------- /lib/common_components/custom_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/common_components/custom_button.dart -------------------------------------------------------------------------------- /lib/common_components/custom_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/common_components/custom_card.dart -------------------------------------------------------------------------------- /lib/common_components/custom_input_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/common_components/custom_input_field.dart -------------------------------------------------------------------------------- /lib/common_components/custom_media_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/common_components/custom_media_card.dart -------------------------------------------------------------------------------- /lib/common_components/custom_popup_route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/common_components/custom_popup_route.dart -------------------------------------------------------------------------------- /lib/common_components/empty_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/common_components/empty_widget.dart -------------------------------------------------------------------------------- /lib/common_components/error_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/common_components/error_dialog.dart -------------------------------------------------------------------------------- /lib/common_components/header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/common_components/header.dart -------------------------------------------------------------------------------- /lib/common_components/loading_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/common_components/loading_widget.dart -------------------------------------------------------------------------------- /lib/common_components/media_content_edit_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/common_components/media_content_edit_card.dart -------------------------------------------------------------------------------- /lib/common_components/person_horizontal_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/common_components/person_horizontal_tile.dart -------------------------------------------------------------------------------- /lib/common_components/provider_callback.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/common_components/provider_callback.dart -------------------------------------------------------------------------------- /lib/common_components/provider_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/common_components/provider_handler.dart -------------------------------------------------------------------------------- /lib/common_components/public_private_bottomsheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/common_components/public_private_bottomsheet.dart -------------------------------------------------------------------------------- /lib/common_components/qr_scanner.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/common_components/qr_scanner.dart -------------------------------------------------------------------------------- /lib/common_components/switch_at_sign.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/common_components/switch_at_sign.dart -------------------------------------------------------------------------------- /lib/common_components/text_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/common_components/text_tile.dart -------------------------------------------------------------------------------- /lib/common_components/triple_dot_loading.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/common_components/triple_dot_loading.dart -------------------------------------------------------------------------------- /lib/desktop/routes/desktop_route_names.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/routes/desktop_route_names.dart -------------------------------------------------------------------------------- /lib/desktop/routes/desktop_routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/routes/desktop_routes.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_appearance/color_setting/desktop_color_setting_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_appearance/color_setting/desktop_color_setting_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_appearance/color_setting/widgets/desktop_color_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_appearance/color_setting/widgets/desktop_color_card.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_appearance/desktop_appearance_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_appearance/desktop_appearance_model.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_appearance/desktop_appearance_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_appearance/desktop_appearance_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_appearance/theme_setting/desktop_theme_setting_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_appearance/theme_setting/desktop_theme_setting_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_appearance/theme_setting/widgets/desktop_theme_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_appearance/theme_setting/widgets/desktop_theme_card.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_common/crop_editor_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_common/crop_editor_helper.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_common/desktop_crop_image_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_common/desktop_crop_image_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_common/desktop_dialog_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_common/desktop_dialog_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_edit_profile/desktop_edit_profile_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_edit_profile/desktop_edit_profile_model.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_edit_profile/desktop_edit_profile_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_edit_profile/desktop_edit_profile_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_edit_profile/desktop_profile_picture/desktop_profile_picture_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_edit_profile/desktop_profile_picture/desktop_profile_picture_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_edit_profile/desktop_side_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_edit_profile/desktop_side_menu.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_edit_profile/widgets/desktop_side_menu_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_edit_profile/widgets/desktop_side_menu_widget.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_location/desktop_location_preview_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_location/desktop_location_preview_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_location/desktop_search_location/desktop_search_location_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_location/desktop_search_location/desktop_search_location_model.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_location/desktop_search_location/desktop_search_location_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_location/desktop_search_location/desktop_search_location_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_login/desktop_login_landing_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_login/desktop_login_landing_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_login/desktop_login_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_login/desktop_login_model.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_login/desktop_login_otp/desktop_login_otp_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_login/desktop_login_otp/desktop_login_otp_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_login/desktop_login_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_login/desktop_login_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_login/desktop_onboarding_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_login/desktop_onboarding_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_my_profile/desktop_follow/desktop_follow_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_my_profile/desktop_follow/desktop_follow_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_my_profile/desktop_follow/desktop_followers_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_my_profile/desktop_follow/desktop_followers_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_my_profile/desktop_follow/widgets/desktop_atsign_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_my_profile/desktop_follow/widgets/desktop_atsign_widget.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_my_profile/desktop_follow/widgets/desktop_user_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_my_profile/desktop_follow/widgets/desktop_user_widget.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_my_profile/desktop_my_profile_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_my_profile/desktop_my_profile_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_my_profile/desktop_profile_channels/desktop_profile_channels_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_my_profile/desktop_profile_channels/desktop_profile_channels_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_my_profile/desktop_profile_data_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_my_profile/desktop_profile_data_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_my_profile/desktop_profile_details/desktop_profile_details_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_my_profile/desktop_profile_details/desktop_profile_details_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_my_profile/desktop_search_atsign/desktop_search_atsign_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_my_profile/desktop_search_atsign/desktop_search_atsign_model.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_my_profile/desktop_search_atsign/desktop_search_atsign_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_my_profile/desktop_search_atsign/desktop_search_atsign_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_my_profile/desktop_settings/desktop_settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_my_profile/desktop_settings/desktop_settings_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_my_profile/desktop_settings/desktop_switch_account/desktop_switch_account_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_my_profile/desktop_settings/desktop_switch_account/desktop_switch_account_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_my_profile/desktop_settings/widgets/desktop_setting_switch_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_my_profile/desktop_settings/widgets/desktop_setting_switch_widget.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_my_profile/desktop_settings/widgets/desktop_setting_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_my_profile/desktop_settings/widgets/desktop_setting_widget.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_my_profile/widgets/desktop_profile_tabbar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_my_profile/widgets/desktop_profile_tabbar.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_notification/desktop_new_request_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_notification/desktop_new_request_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_notification/desktop_notification_list_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_notification/desktop_notification_list_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_notification/desktop_notification_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_notification/desktop_notification_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_notification/item/desktop_new_request_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_notification/item/desktop_new_request_item.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_notification/item/desktop_notification_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_notification/item/desktop_notification_item.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_profile_basic_info/desktop_add_location/desktop_add_location_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_profile_basic_info/desktop_add_location/desktop_add_location_model.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_profile_basic_info/desktop_add_location/desktop_add_location_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_profile_basic_info/desktop_add_location/desktop_add_location_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_profile_basic_info/desktop_edit_basic_detail/desktop_edit_basic_detail_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_profile_basic_info/desktop_edit_basic_detail/desktop_edit_basic_detail_model.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_profile_basic_info/desktop_edit_basic_detail/desktop_edit_basic_detail_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_profile_basic_info/desktop_edit_basic_detail/desktop_edit_basic_detail_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_profile_basic_info/desktop_profile_add_custom_field/desktop_profile_add_custom_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_profile_basic_info/desktop_profile_add_custom_field/desktop_profile_add_custom_field.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_profile_basic_info/desktop_profile_add_custom_field/desktop_profile_add_custom_field_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_profile_basic_info/desktop_profile_add_custom_field/desktop_profile_add_custom_field_model.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_profile_basic_info/desktop_profile_add_custom_field/widgets/desktop_html_editor_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_profile_basic_info/desktop_profile_add_custom_field/widgets/desktop_html_editor_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_profile_basic_info/desktop_profile_add_custom_field/widgets/desktop_html_preview_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_profile_basic_info/desktop_profile_add_custom_field/widgets/desktop_html_preview_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_profile_basic_info/desktop_profile_basic_info_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_profile_basic_info/desktop_profile_basic_info_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_profile_basic_info/desktop_profile_media/desktop_profile_media_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_profile_basic_info/desktop_profile_media/desktop_profile_media_model.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_profile_basic_info/desktop_profile_media/desktop_profile_media_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_profile_basic_info/desktop_profile_media/desktop_profile_media_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_profile_basic_info/desktop_profile_media/widgets/desktop_media_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_profile_basic_info/desktop_profile_media/widgets/desktop_media_item.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_profile_basic_info/desktop_reorder_basic_info/desktop_reorder_basic_info_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_profile_basic_info/desktop_reorder_basic_info/desktop_reorder_basic_info_model.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_profile_basic_info/desktop_reorder_basic_info/desktop_reorder_basic_info_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_profile_basic_info/desktop_reorder_basic_info/desktop_reorder_basic_info_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_profile_basic_info/desktop_reorder_basic_info/widgets/desktop_reorderable_item_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_profile_basic_info/desktop_reorder_basic_info/widgets/desktop_reorderable_item_widget.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_profile_basic_info/desktop_select_location/desktop_select_location_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_profile_basic_info/desktop_select_location/desktop_select_location_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_profile_basic_info/widgets/desktop_basic_info_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_profile_basic_info/widgets/desktop_basic_info_widget.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_profile_basic_info/widgets/desktop_empty_category_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_profile_basic_info/widgets/desktop_empty_category_widget.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_profile_basic_info/widgets/desktop_location_item_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_profile_basic_info/widgets/desktop_location_item_widget.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_profile_basic_info/widgets/desktop_media_item_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_profile_basic_info/widgets/desktop_media_item_widget.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_share_profile/desktop_share_profile_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_share_profile/desktop_share_profile_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_tutorial/desktop_tutorial_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_tutorial/desktop_tutorial_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_tutorial/widgets/desktop_tutorial_info_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_tutorial/widgets/desktop_tutorial_info_widget.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_tutorial/widgets/desktop_tutorial_popup.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_tutorial/widgets/desktop_tutorial_popup.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_user_profile/desktop_profile_info_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_user_profile/desktop_profile_info_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_user_profile/desktop_profile_private_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_user_profile/desktop_profile_private_page.dart -------------------------------------------------------------------------------- /lib/desktop/screens/desktop_user_profile/desktop_user_profile_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/screens/desktop_user_profile/desktop_user_profile_page.dart -------------------------------------------------------------------------------- /lib/desktop/services/theme/app_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/services/theme/app_theme.dart -------------------------------------------------------------------------------- /lib/desktop/services/theme/inherited_app_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/services/theme/inherited_app_theme.dart -------------------------------------------------------------------------------- /lib/desktop/utils/desktop_dimens.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/utils/desktop_dimens.dart -------------------------------------------------------------------------------- /lib/desktop/utils/dialog_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/utils/dialog_utils.dart -------------------------------------------------------------------------------- /lib/desktop/utils/enums.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/utils/enums.dart -------------------------------------------------------------------------------- /lib/desktop/utils/load_status.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/utils/load_status.dart -------------------------------------------------------------------------------- /lib/desktop/utils/logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/utils/logger.dart -------------------------------------------------------------------------------- /lib/desktop/utils/mock_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/utils/mock_data.dart -------------------------------------------------------------------------------- /lib/desktop/utils/shared_preferences_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/utils/shared_preferences_utils.dart -------------------------------------------------------------------------------- /lib/desktop/utils/snackbar_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/utils/snackbar_utils.dart -------------------------------------------------------------------------------- /lib/desktop/utils/strings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/utils/strings.dart -------------------------------------------------------------------------------- /lib/desktop/utils/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/utils/utils.dart -------------------------------------------------------------------------------- /lib/desktop/widgets/buttons/desktop_icon_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/widgets/buttons/desktop_icon_button.dart -------------------------------------------------------------------------------- /lib/desktop/widgets/buttons/desktop_icon_label_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/widgets/buttons/desktop_icon_label_button.dart -------------------------------------------------------------------------------- /lib/desktop/widgets/buttons/desktop_preview_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/widgets/buttons/desktop_preview_button.dart -------------------------------------------------------------------------------- /lib/desktop/widgets/buttons/desktop_private_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/widgets/buttons/desktop_private_button.dart -------------------------------------------------------------------------------- /lib/desktop/widgets/desktop_avatar_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/widgets/desktop_avatar_widget.dart -------------------------------------------------------------------------------- /lib/desktop/widgets/desktop_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/widgets/desktop_button.dart -------------------------------------------------------------------------------- /lib/desktop/widgets/desktop_empty_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/widgets/desktop_empty_widget.dart -------------------------------------------------------------------------------- /lib/desktop/widgets/desktop_logo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/widgets/desktop_logo.dart -------------------------------------------------------------------------------- /lib/desktop/widgets/desktop_main_tabbar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/widgets/desktop_main_tabbar.dart -------------------------------------------------------------------------------- /lib/desktop/widgets/desktop_show_hide_radio_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/widgets/desktop_show_hide_radio_button.dart -------------------------------------------------------------------------------- /lib/desktop/widgets/desktop_showcase_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/widgets/desktop_showcase_widget.dart -------------------------------------------------------------------------------- /lib/desktop/widgets/desktop_tabbar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/widgets/desktop_tabbar.dart -------------------------------------------------------------------------------- /lib/desktop/widgets/desktop_welcome_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/widgets/desktop_welcome_widget.dart -------------------------------------------------------------------------------- /lib/desktop/widgets/images/desktop_cached_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/widgets/images/desktop_cached_image.dart -------------------------------------------------------------------------------- /lib/desktop/widgets/images/desktop_circle_avatar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/widgets/images/desktop_circle_avatar.dart -------------------------------------------------------------------------------- /lib/desktop/widgets/passcode_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/widgets/passcode_widget.dart -------------------------------------------------------------------------------- /lib/desktop/widgets/textfields/desktop_otp_textfield.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/widgets/textfields/desktop_otp_textfield.dart -------------------------------------------------------------------------------- /lib/desktop/widgets/textfields/desktop_textfield.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/desktop/widgets/textfields/desktop_textfield.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/model/at_follows_value.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/model/at_follows_value.dart -------------------------------------------------------------------------------- /lib/model/basic_data_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/model/basic_data_model.dart -------------------------------------------------------------------------------- /lib/model/here_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/model/here_result.dart -------------------------------------------------------------------------------- /lib/model/osm_location_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/model/osm_location_model.dart -------------------------------------------------------------------------------- /lib/model/twitter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/model/twitter.dart -------------------------------------------------------------------------------- /lib/model/user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/model/user.dart -------------------------------------------------------------------------------- /lib/model/version.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/model/version.dart -------------------------------------------------------------------------------- /lib/routes/route_names.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/routes/route_names.dart -------------------------------------------------------------------------------- /lib/routes/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/routes/routes.dart -------------------------------------------------------------------------------- /lib/screens/add_link/add_link.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/screens/add_link/add_link.dart -------------------------------------------------------------------------------- /lib/screens/add_link/create_custom_add_link/create_custom_add_link.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/screens/add_link/create_custom_add_link/create_custom_add_link.dart -------------------------------------------------------------------------------- /lib/screens/edit_persona/add_custom_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/screens/edit_persona/add_custom_field.dart -------------------------------------------------------------------------------- /lib/screens/edit_persona/content_edit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/screens/edit_persona/content_edit.dart -------------------------------------------------------------------------------- /lib/screens/edit_persona/edit_category_fields.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/screens/edit_persona/edit_category_fields.dart -------------------------------------------------------------------------------- /lib/screens/edit_persona/edit_persona.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/screens/edit_persona/edit_persona.dart -------------------------------------------------------------------------------- /lib/screens/edit_persona/html_editor_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/screens/edit_persona/html_editor_screen.dart -------------------------------------------------------------------------------- /lib/screens/edit_persona/reorder_fields.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/screens/edit_persona/reorder_fields.dart -------------------------------------------------------------------------------- /lib/screens/following.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/screens/following.dart -------------------------------------------------------------------------------- /lib/screens/home/home.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/screens/home/home.dart -------------------------------------------------------------------------------- /lib/screens/home/widgets/Home_details.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/screens/home/widgets/Home_details.dart -------------------------------------------------------------------------------- /lib/screens/home/widgets/home_channel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/screens/home/widgets/home_channel.dart -------------------------------------------------------------------------------- /lib/screens/home/widgets/home_empty_details.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/screens/home/widgets/home_empty_details.dart -------------------------------------------------------------------------------- /lib/screens/home/widgets/home_featured.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/screens/home/widgets/home_featured.dart -------------------------------------------------------------------------------- /lib/screens/home/widgets/home_private_account.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/screens/home/widgets/home_private_account.dart -------------------------------------------------------------------------------- /lib/screens/home/widgets/twitter_embed_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/screens/home/widgets/twitter_embed_widget.dart -------------------------------------------------------------------------------- /lib/screens/location/location_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/screens/location/location_widget.dart -------------------------------------------------------------------------------- /lib/screens/location/widgets/create_custom_location.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/screens/location/widgets/create_custom_location.dart -------------------------------------------------------------------------------- /lib/screens/location/widgets/preview_location.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/screens/location/widgets/preview_location.dart -------------------------------------------------------------------------------- /lib/screens/location/widgets/select_location.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/screens/location/widgets/select_location.dart -------------------------------------------------------------------------------- /lib/screens/location/widgets/selected_location.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/screens/location/widgets/selected_location.dart -------------------------------------------------------------------------------- /lib/screens/options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/screens/options.dart -------------------------------------------------------------------------------- /lib/screens/qr_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/screens/qr_screen.dart -------------------------------------------------------------------------------- /lib/screens/search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/screens/search.dart -------------------------------------------------------------------------------- /lib/screens/website_webview/website_webview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/screens/website_webview/website_webview.dart -------------------------------------------------------------------------------- /lib/screens/welcome.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/screens/welcome.dart -------------------------------------------------------------------------------- /lib/services/at_key_get_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/services/at_key_get_service.dart -------------------------------------------------------------------------------- /lib/services/at_key_set_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/services/at_key_set_service.dart -------------------------------------------------------------------------------- /lib/services/backend_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/services/backend_service.dart -------------------------------------------------------------------------------- /lib/services/change_privacy_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/services/change_privacy_service.dart -------------------------------------------------------------------------------- /lib/services/common_functions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/services/common_functions.dart -------------------------------------------------------------------------------- /lib/services/compare_basicdata.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/services/compare_basicdata.dart -------------------------------------------------------------------------------- /lib/services/field_order_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/services/field_order_service.dart -------------------------------------------------------------------------------- /lib/services/image_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/services/image_picker.dart -------------------------------------------------------------------------------- /lib/services/nav_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/services/nav_service.dart -------------------------------------------------------------------------------- /lib/services/search_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/services/search_service.dart -------------------------------------------------------------------------------- /lib/services/size_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/services/size_config.dart -------------------------------------------------------------------------------- /lib/services/theme_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/services/theme_service.dart -------------------------------------------------------------------------------- /lib/services/twitter_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/services/twitter_service.dart -------------------------------------------------------------------------------- /lib/services/version_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/services/version_service.dart -------------------------------------------------------------------------------- /lib/utils/at_enum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/utils/at_enum.dart -------------------------------------------------------------------------------- /lib/utils/at_key_constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/utils/at_key_constants.dart -------------------------------------------------------------------------------- /lib/utils/colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/utils/colors.dart -------------------------------------------------------------------------------- /lib/utils/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/utils/constants.dart -------------------------------------------------------------------------------- /lib/utils/field_names.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/utils/field_names.dart -------------------------------------------------------------------------------- /lib/utils/images.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/utils/images.dart -------------------------------------------------------------------------------- /lib/utils/text_constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/utils/text_constants.dart -------------------------------------------------------------------------------- /lib/utils/text_styles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/utils/text_styles.dart -------------------------------------------------------------------------------- /lib/utils/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/utils/theme.dart -------------------------------------------------------------------------------- /lib/view_models/base_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/view_models/base_model.dart -------------------------------------------------------------------------------- /lib/view_models/deep_link_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/view_models/deep_link_provider.dart -------------------------------------------------------------------------------- /lib/view_models/follow_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/view_models/follow_service.dart -------------------------------------------------------------------------------- /lib/view_models/internet_connectivity_checker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/view_models/internet_connectivity_checker.dart -------------------------------------------------------------------------------- /lib/view_models/theme_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/view_models/theme_view_model.dart -------------------------------------------------------------------------------- /lib/view_models/user_preview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/view_models/user_preview.dart -------------------------------------------------------------------------------- /lib/view_models/user_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/lib/view_models/user_provider.dart -------------------------------------------------------------------------------- /linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/linux/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/linux/main.cc -------------------------------------------------------------------------------- /linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/linux/my_application.cc -------------------------------------------------------------------------------- /linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/linux/my_application.h -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/macos/.gitignore -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/macos/Podfile -------------------------------------------------------------------------------- /macos/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/macos/Podfile.lock -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/image-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/image-1024.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/image-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/image-128.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/image-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/image-16.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/image-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/image-256.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/image-257.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/image-257.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/image-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/image-32.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/image-33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/image-33.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/image-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/image-512.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/image-513.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/image-513.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/image-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/image-64.png -------------------------------------------------------------------------------- /macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/macos/Runner/Info.plist -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/test/widget_test.dart -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/web/manifest.json -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/windows/runner/Runner.rc -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/windows/runner/main.cpp -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/windows/runner/resource.h -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/windows/runner/utils.cpp -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/windows/runner/utils.h -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_wavi_app/HEAD/windows/runner/win32_window.h --------------------------------------------------------------------------------