├── .github ├── ISSUE_TEMPLATE-temp │ ├── bug_report.yaml │ └── feature_request.yaml ├── dependabot.yaml ├── semantic.yml └── workflows │ ├── at_client_sdk.yaml │ ├── at_libraries.yaml │ ├── at_widgets.yml │ ├── autobug.yaml │ ├── codeql.yml │ ├── dependency-review.yml │ ├── flutter-channel.yaml │ ├── osv-scanner.yaml │ └── scorecards.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── actions └── setup-flutter-and-dart │ ├── action.yaml │ ├── flutter_ref-beta │ └── flutter_ref-stable ├── code_of_conduct.md ├── images ├── image1.png ├── image2.png ├── image3.png ├── image4.png ├── image5.png ├── image6.png └── image7.png ├── packages ├── at_auth │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── example │ │ ├── authenticate.dart │ │ ├── enrollment_request.dart │ │ └── onboard.dart │ ├── lib │ │ ├── at_auth.dart │ │ └── src │ │ │ ├── at_auth_base.dart │ │ │ ├── at_auth_impl.dart │ │ │ ├── auth │ │ │ ├── at_auth_request.dart │ │ │ ├── at_auth_response.dart │ │ │ ├── cram_authenticator.dart │ │ │ └── pkam_authenticator.dart │ │ │ ├── auth_constants.dart │ │ │ ├── auth_interface.dart │ │ │ ├── auth_interface_impl.dart │ │ │ ├── enroll │ │ │ ├── at_enrollment_base.dart │ │ │ ├── at_enrollment_impl.dart │ │ │ ├── at_enrollment_response.dart │ │ │ ├── base_enrollment_request.dart │ │ │ ├── enrollment_request.dart │ │ │ ├── enrollment_request_decision.dart │ │ │ ├── enrollment_server_response.dart │ │ │ └── first_enrollment_request.dart │ │ │ ├── exception │ │ │ └── at_auth_exceptions.dart │ │ │ ├── keys │ │ │ └── at_auth_keys.dart │ │ │ └── onboard │ │ │ ├── at_onboarding_request.dart │ │ │ └── at_onboarding_response.dart │ ├── pubspec.yaml │ └── test │ │ ├── at_auth_test.dart │ │ ├── cram_authenticator_test.dart │ │ ├── data │ │ └── @alice🛠_key.atKeys │ │ ├── enrollment_test.dart │ │ └── pkam_authenticator_test.dart ├── at_backupkey_flutter │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ ├── settings.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── kotlin │ │ │ └── com │ │ │ └── atsign │ │ │ └── at_backupkey_flutter │ │ │ └── AtBackupkeyFlutterPlugin.kt │ ├── example │ │ ├── .env │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── atsign │ │ │ │ │ │ │ └── at_backupkey_flutter_example │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── example.md │ │ ├── ios │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Podfile │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ ├── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── Runner-Bridging-Header.h │ │ │ └── RunnerTests │ │ │ │ └── RunnerTests.swift │ │ ├── lib │ │ │ └── main.dart │ │ ├── linux │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── flutter │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── generated_plugin_registrant.cc │ │ │ │ ├── generated_plugin_registrant.h │ │ │ │ └── generated_plugins.cmake │ │ │ ├── main.cc │ │ │ ├── my_application.cc │ │ │ └── my_application.h │ │ ├── macos │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── Flutter-Debug.xcconfig │ │ │ │ └── Flutter-Release.xcconfig │ │ │ ├── Podfile │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── app_icon_1024.png │ │ │ │ │ ├── app_icon_128.png │ │ │ │ │ ├── app_icon_16.png │ │ │ │ │ ├── app_icon_256.png │ │ │ │ │ ├── app_icon_32.png │ │ │ │ │ ├── app_icon_512.png │ │ │ │ │ └── app_icon_64.png │ │ │ │ ├── Base.lproj │ │ │ │ └── MainMenu.xib │ │ │ │ ├── Configs │ │ │ │ ├── AppInfo.xcconfig │ │ │ │ ├── Debug.xcconfig │ │ │ │ ├── Release.xcconfig │ │ │ │ └── Warnings.xcconfig │ │ │ │ ├── DebugProfile.entitlements │ │ │ │ ├── Info.plist │ │ │ │ ├── MainFlutterWindow.swift │ │ │ │ └── Release.entitlements │ │ ├── pubspec.yaml │ │ ├── test │ │ │ ├── test_material_app.dart │ │ │ └── widget_test.dart │ │ └── 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 │ ├── ios │ │ ├── .gitignore │ │ ├── Assets │ │ │ └── .gitkeep │ │ ├── Classes │ │ │ ├── AtBackupkeyFlutterPlugin.h │ │ │ ├── AtBackupkeyFlutterPlugin.m │ │ │ └── SwiftAtBackupkeyFlutterPlugin.swift │ │ └── at_backupkey_flutter.podspec │ ├── lib │ │ ├── at_backupkey_flutter.dart │ │ ├── services │ │ │ └── backupkey_service.dart │ │ ├── utils │ │ │ ├── color_constants.dart │ │ │ ├── size_config.dart │ │ │ └── strings.dart │ │ └── widgets │ │ │ └── backup_key_widget.dart │ ├── linux │ │ ├── CMakeLists.txt │ │ ├── at_backupkey_flutter_plugin.cc │ │ └── include │ │ │ └── at_backupkey_flutter │ │ │ └── at_backupkey_flutter_plugin.h │ ├── macos │ │ ├── Classes │ │ │ └── AtBackupkeyFlutterPlugin.swift │ │ └── at_backupkey_flutter.podspec │ ├── pubspec.yaml │ ├── test │ │ ├── at_backupkey_flutter_test.dart │ │ ├── at_demo_credentials.dart │ │ ├── backupkey_service_test.dart │ │ ├── test_material_app.dart │ │ └── widgets_test │ │ │ └── backup_key_widget_test.dart │ └── windows │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── at_backupkey_flutter_plugin.cpp │ │ └── include │ │ └── at_backupkey_flutter │ │ └── at_backupkey_flutter_plugin.h ├── at_chat_flutter │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ ├── settings.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── kotlin │ │ │ └── com │ │ │ └── atsign │ │ │ └── at_chat_flutter │ │ │ └── AtChatFlutterPlugin.kt │ ├── assets │ │ └── imagePlaceholder.png │ ├── example │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── at_chat_flutter_example │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── example.md │ │ ├── ios │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Podfile │ │ │ ├── Podfile.lock │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── Runner-Bridging-Header.h │ │ ├── lib │ │ │ ├── main.dart │ │ │ ├── second_screen.dart │ │ │ └── third_screen.dart │ │ ├── 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 │ │ │ │ │ ├── app_icon_1024.png │ │ │ │ │ ├── app_icon_128.png │ │ │ │ │ ├── app_icon_16.png │ │ │ │ │ ├── app_icon_256.png │ │ │ │ │ ├── app_icon_32.png │ │ │ │ │ ├── app_icon_512.png │ │ │ │ │ └── app_icon_64.png │ │ │ │ ├── Base.lproj │ │ │ │ └── MainMenu.xib │ │ │ │ ├── Configs │ │ │ │ ├── AppInfo.xcconfig │ │ │ │ ├── Debug.xcconfig │ │ │ │ ├── Release.xcconfig │ │ │ │ └── Warnings.xcconfig │ │ │ │ ├── DebugProfile.entitlements │ │ │ │ ├── Info.plist │ │ │ │ ├── MainFlutterWindow.swift │ │ │ │ └── Release.entitlements │ │ ├── pubspec.yaml │ │ └── test │ │ │ └── widget_test.dart │ ├── ios │ │ ├── .gitignore │ │ ├── Assets │ │ │ └── .gitkeep │ │ ├── Classes │ │ │ ├── AtChatFlutterPlugin.h │ │ │ ├── AtChatFlutterPlugin.m │ │ │ └── SwiftAtChatFlutterPlugin.swift │ │ └── at_chat_flutter.podspec │ ├── lib │ │ ├── at_chat_flutter.dart │ │ ├── models │ │ │ └── message_model.dart │ │ ├── screens │ │ │ └── chat_screen.dart │ │ ├── services │ │ │ └── chat_service.dart │ │ ├── utils │ │ │ ├── colors.dart │ │ │ ├── dialog_utils.dart │ │ │ └── init_chat_service.dart │ │ └── widgets │ │ │ ├── bottom_sheet_dialog.dart │ │ │ ├── button_widget.dart │ │ │ ├── contacts_initials.dart │ │ │ ├── custom_circle_avatar.dart │ │ │ ├── incoming_message_bubble.dart │ │ │ ├── outgoing_message_bubble.dart │ │ │ └── send_message.dart │ ├── pubspec.yaml │ └── test │ │ ├── test_material_app.dart │ │ ├── unit_test │ │ └── chat_screen_test.dart │ │ └── widget_tests │ │ ├── bottom_sheet_dialog_test.dart │ │ ├── button_widget_test.dart │ │ ├── contacts_intials_test.dart │ │ ├── incoming_message_bubble_test.dart │ │ └── outgoing_message_bubble_test.dart ├── at_chops │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── example │ │ ├── at_chops_example.dart │ │ └── zariot │ │ │ ├── at_chops_secure_element.dart │ │ │ ├── compute_verify_signature_sim.dart │ │ │ ├── external_signer.dart │ │ │ └── test │ │ │ └── compute_activation_key.dart │ ├── lib │ │ ├── at_chops.dart │ │ ├── src │ │ │ ├── algorithm │ │ │ │ ├── aes_ctr_factory.dart │ │ │ │ ├── aes_encryption_algo.dart │ │ │ │ ├── algo_type.dart │ │ │ │ ├── argon2id_hashing_algo.dart │ │ │ │ ├── at_algorithm.dart │ │ │ │ ├── at_iv.dart │ │ │ │ ├── default_hashing_algo.dart │ │ │ │ ├── default_signing_algo.dart │ │ │ │ ├── ecc_signing_algo.dart │ │ │ │ ├── ed25519_signing_algo.dart │ │ │ │ ├── padding │ │ │ │ │ ├── padding.dart │ │ │ │ │ ├── padding_params.dart │ │ │ │ │ └── pkcs7padding.dart │ │ │ │ ├── pkam_signing_algo.dart │ │ │ │ └── rsa_encryption_algo.dart │ │ │ ├── at_chops_base.dart │ │ │ ├── at_chops_impl.dart │ │ │ ├── at_keys_crypto.dart │ │ │ ├── factory │ │ │ │ └── at_hashing_algo_factory.dart │ │ │ ├── key │ │ │ │ ├── at_key_pair.dart │ │ │ │ ├── at_private_key.dart │ │ │ │ ├── at_public_key.dart │ │ │ │ ├── impl │ │ │ │ │ ├── aes_key.dart │ │ │ │ │ ├── at_chops_keys.dart │ │ │ │ │ ├── at_encryption_key_pair.dart │ │ │ │ │ ├── at_pkam_key_pair.dart │ │ │ │ │ ├── at_signing_key_pair.dart │ │ │ │ │ └── cram_key.dart │ │ │ │ ├── key_names.dart │ │ │ │ └── key_type.dart │ │ │ ├── metadata │ │ │ │ ├── at_signing_input.dart │ │ │ │ ├── encryption_metadata.dart │ │ │ │ ├── encryption_result.dart │ │ │ │ ├── signing_metadata.dart │ │ │ │ └── signing_result.dart │ │ │ ├── model │ │ │ │ ├── at_encrypted.dart │ │ │ │ └── hash_params.dart │ │ │ └── util │ │ │ │ └── at_chops_util.dart │ │ └── types.dart │ ├── pubspec.yaml │ └── test │ │ ├── aes_encrption_old_impl.dart │ │ ├── aes_encryption_algo_test.dart │ │ ├── aes_key_test.dart │ │ ├── at_chops_test.dart │ │ ├── at_chops_util_test.dart │ │ ├── at_keys_crypto_test.dart │ │ ├── default_signing_algo_test.dart │ │ ├── ecc_signing_algo_test.dart │ │ ├── ed25519_signing_algo_test.dart │ │ ├── hashing_algo_test.dart │ │ ├── pkam_signing_algo_test.dart │ │ ├── pkcs7_padding_test.dart │ │ └── rsa_encryption_algo_test.dart ├── at_cli_commons │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── bin │ │ │ ├── put_and_get_example.dart │ │ │ └── scan_example.dart │ │ └── pubspec.yaml │ ├── lib │ │ ├── at_cli_commons.dart │ │ └── src │ │ │ ├── cli_base.dart │ │ │ ├── service_factories.dart │ │ │ ├── sync_listener.dart │ │ │ └── utils.dart │ ├── pubspec.yaml │ └── test │ │ └── utils_test.dart ├── at_client │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── example │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── bin │ │ │ └── example.dart │ │ └── pubspec.yaml │ ├── lib │ │ ├── at_client.dart │ │ ├── at_client_mixins.dart │ │ └── src │ │ │ ├── at_collection │ │ │ ├── at_collection_model.dart │ │ │ ├── at_collection_model_factory.dart │ │ │ ├── at_json_collection_model.dart │ │ │ ├── collection_util.dart │ │ │ ├── collections.dart │ │ │ └── impl │ │ │ │ ├── at_collection_operations_impl.dart │ │ │ │ ├── at_collection_query_operations_impl.dart │ │ │ │ ├── at_collection_stream_operations_impl.dart │ │ │ │ ├── collection_methods_impl.dart │ │ │ │ └── default_key_maker.dart │ │ │ ├── client │ │ │ ├── at_client_impl.dart │ │ │ ├── at_client_spec.dart │ │ │ ├── local_secondary.dart │ │ │ ├── remote_secondary.dart │ │ │ ├── request_options.dart │ │ │ ├── secondary.dart │ │ │ └── verb_builder_manager.dart │ │ │ ├── compaction │ │ │ └── at_commit_log_compaction.dart │ │ │ ├── converters │ │ │ ├── byte_splitter.dart │ │ │ ├── decoder │ │ │ │ └── at_decoder.dart │ │ │ ├── encoder │ │ │ │ └── at_encoder.dart │ │ │ └── encryption │ │ │ │ └── aes_converter.dart │ │ │ ├── decryption_service │ │ │ ├── decryption.dart │ │ │ ├── decryption_manager.dart │ │ │ ├── local_key_decryption.dart │ │ │ ├── self_key_decryption.dart │ │ │ └── shared_key_decryption.dart │ │ │ ├── encryption_service │ │ │ ├── abstract_atkey_encryption.dart │ │ │ ├── encryption.dart │ │ │ ├── encryption_manager.dart │ │ │ ├── self_key_encryption.dart │ │ │ ├── shared_key_encryption.dart │ │ │ ├── sign_in_public_data.dart │ │ │ └── stream_encryption.dart │ │ │ ├── exception │ │ │ └── at_client_exception.dart │ │ │ ├── key_stream │ │ │ ├── collection │ │ │ │ ├── collection.dart │ │ │ │ ├── iterable_key_stream.dart │ │ │ │ ├── list_key_stream.dart │ │ │ │ ├── map_key_stream.dart │ │ │ │ └── set_key_stream.dart │ │ │ ├── key_stream.dart │ │ │ ├── key_stream_impl.dart │ │ │ ├── key_stream_iterable_base.dart │ │ │ ├── key_stream_map_base.dart │ │ │ └── key_stream_mixin.dart │ │ │ ├── listener │ │ │ ├── at_sign_change_listener.dart │ │ │ ├── connectivity_listener.dart │ │ │ ├── switch_at_sign_event.dart │ │ │ └── sync_progress_listener.dart │ │ │ ├── manager │ │ │ ├── at_client_manager.dart │ │ │ ├── monitor.dart │ │ │ ├── preference_manager.dart │ │ │ ├── storage_manager.dart │ │ │ ├── sync_isolate_manager.dart │ │ │ ├── sync_manager.dart │ │ │ └── sync_manager_impl.dart │ │ │ ├── mixins │ │ │ ├── apkam_signing.dart │ │ │ └── at_client_bindings.dart │ │ │ ├── preference │ │ │ ├── at_client_config.dart │ │ │ ├── at_client_particulars.dart │ │ │ ├── at_client_preference.dart │ │ │ └── monitor_preference.dart │ │ │ ├── response │ │ │ ├── at_notification.dart │ │ │ ├── default_response_parser.dart │ │ │ ├── enrollment.dart │ │ │ ├── json_utils.dart │ │ │ ├── notification_response_parser.dart │ │ │ ├── response.dart │ │ │ └── response_parser.dart │ │ │ ├── rpc │ │ │ ├── at_rpc.dart │ │ │ └── at_rpc_types.dart │ │ │ ├── service │ │ │ ├── change.dart │ │ │ ├── change_impl.dart │ │ │ ├── encryption_service.dart │ │ │ ├── enrollment_service.dart │ │ │ ├── enrollment_service_impl.dart │ │ │ ├── file_transfer_service.dart │ │ │ ├── notification_service.dart │ │ │ ├── notification_service_impl.dart │ │ │ ├── sync │ │ │ │ ├── sync_conflict.dart │ │ │ │ ├── sync_request.dart │ │ │ │ ├── sync_result.dart │ │ │ │ └── sync_status.dart │ │ │ ├── sync_service.dart │ │ │ └── sync_service_impl.dart │ │ │ ├── stream │ │ │ ├── at_stream_notification.dart │ │ │ ├── at_stream_response.dart │ │ │ ├── file_transfer_object.dart │ │ │ └── stream_notification_handler.dart │ │ │ ├── telemetry │ │ │ └── at_client_telemetry.dart │ │ │ ├── transformer │ │ │ ├── at_transformer.dart │ │ │ ├── request_transformer │ │ │ │ ├── get_request_transformer.dart │ │ │ │ ├── notify_request_transformer.dart │ │ │ │ └── put_request_transformer.dart │ │ │ └── response_transformer │ │ │ │ ├── get_response_transformer.dart │ │ │ │ ├── notification_response_transformer.dart │ │ │ │ └── put_response_transformer.dart │ │ │ └── util │ │ │ ├── at_client_util.dart │ │ │ ├── at_client_validation.dart │ │ │ ├── at_collection_utils.dart │ │ │ ├── constants.dart │ │ │ ├── encryption_util.dart │ │ │ ├── enroll_list_request_param.dart │ │ │ ├── logger_util.dart │ │ │ ├── regex_match_util.dart │ │ │ └── sync_util.dart │ ├── pubspec.yaml │ └── test │ │ ├── apkam_authorization_test.dart │ │ ├── at_chops_encryption_util_compatibility_test.dart │ │ ├── at_client_impl_test.dart │ │ ├── at_client_util_test.dart │ │ ├── at_collection │ │ └── at_collection_impl_test.dart │ │ ├── at_key_validation_test.dart │ │ ├── data │ │ └── encryption │ │ │ ├── cat.jpeg │ │ │ ├── dog.jpeg │ │ │ └── hello.txt │ │ ├── decryption_service_test.dart │ │ ├── default_response_parser_test.dart │ │ ├── delete_expired_keys_task_test.dart │ │ ├── encryption_decryption_test.dart │ │ ├── encryption_service_test.dart │ │ ├── encryption_util_test.dart │ │ ├── enrollment_service_test.dart │ │ ├── file_encryption_test.dart │ │ ├── full_stack_test.dart │ │ ├── get_response_transformer_test.dart │ │ ├── key_stream_collection_test.dart │ │ ├── local_key_decryption_test.dart │ │ ├── local_secondary_test.dart │ │ ├── monitor_test.dart │ │ ├── notification_service_test.dart │ │ ├── put_request_test.dart │ │ ├── regex_match_util_test.dart │ │ ├── remote_secondary_test.dart │ │ ├── samples │ │ ├── at_client_check_sync.dart │ │ ├── at_client_on_demand_sync.dart │ │ ├── atclient_sync_service.dart │ │ ├── binary_data.dart │ │ ├── file_downloader.dart │ │ ├── file_uploader.dart │ │ ├── local_delete.dart │ │ ├── local_lookup.dart │ │ ├── local_scan.dart │ │ ├── local_scan_with_value.dart │ │ ├── local_update.dart │ │ ├── local_update_with_meta.dart │ │ ├── lookup.dart │ │ ├── misc │ │ │ ├── encoding_sample.dart │ │ │ ├── get_local_commit_log.dart │ │ │ ├── parse_sync_response.dart │ │ │ ├── stream_receiver.dart │ │ │ ├── stream_sender.dart │ │ │ └── update_local_commit_log.dart │ │ ├── monitor │ │ │ ├── connectivity_test.dart │ │ │ ├── monitor_multiple_subscription_regex.dart │ │ │ ├── monitor_retry_force_close_socket.dart │ │ │ ├── monitor_single_subscription_no_regex.dart │ │ │ └── monitor_single_subscription_regex.dart │ │ ├── remote_llookup.dart │ │ ├── remote_lookup.dart │ │ ├── remote_plookup.dart │ │ ├── remote_scan.dart │ │ ├── remote_stats.dart │ │ ├── remote_update.dart │ │ ├── setup_localkeys.dart │ │ ├── sync │ │ │ ├── test_auto_sync_entries_greater_than_threshold.dart │ │ │ ├── test_auto_sync_entries_less_than_threshold.dart │ │ │ ├── test_auto_sync_entries_less_than_threshold_remote_ahead.dart │ │ │ └── test_auto_sync_switch_atsign.dart │ │ └── test_util.dart │ │ ├── self_key_decryption_test.dart │ │ ├── self_key_encryption_test.dart │ │ ├── shared_key_decryption_test.dart │ │ ├── shared_key_encryption_test.dart │ │ ├── switch_atsign_test.dart │ │ ├── sync_new_test.dart │ │ ├── sync_service_test.dart │ │ ├── sync_util_test.dart │ │ ├── test_utils │ │ ├── no_op_services.dart │ │ └── test_utils.dart │ │ └── verb_builder_test.dart ├── at_client_mobile │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── example │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── EXAMPLE.md │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── ios │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Podfile │ │ │ ├── Podfile.lock │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── Runner-Bridging-Header.h │ │ ├── lib │ │ │ ├── main.dart │ │ │ └── src │ │ │ │ ├── screens │ │ │ │ ├── home.dart │ │ │ │ └── login.dart │ │ │ │ └── services │ │ │ │ └── sdk.service.dart │ │ ├── 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 │ │ │ │ ├── Base.lproj │ │ │ │ └── MainMenu.xib │ │ │ │ ├── Configs │ │ │ │ ├── AppInfo.xcconfig │ │ │ │ ├── Debug.xcconfig │ │ │ │ ├── Release.xcconfig │ │ │ │ └── Warnings.xcconfig │ │ │ │ ├── DebugProfile.entitlements │ │ │ │ ├── Info.plist │ │ │ │ ├── MainFlutterWindow.swift │ │ │ │ └── Release.entitlements │ │ └── pubspec.tmp.yaml │ ├── lib │ │ ├── at_client_mobile.dart │ │ └── src │ │ │ ├── at_client_auth.dart │ │ │ ├── at_client_mobile_base.dart │ │ │ ├── at_client_service.dart │ │ │ ├── atsign_key.dart │ │ │ ├── auth │ │ │ ├── at_auth_service.dart │ │ │ └── at_auth_service_impl.dart │ │ │ ├── auth_constants.dart │ │ │ ├── enrollment │ │ │ └── enrollment_info.dart │ │ │ ├── keychain_manager.dart │ │ │ └── onboarding_status.dart │ ├── pubspec.yaml │ └── test │ │ ├── at_auth_service_test.dart │ │ ├── at_client_service_test.dart │ │ └── keychain_manager_test.dart ├── at_common_flutter │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── assets │ │ └── fonts │ │ │ ├── HelveticaBold.otf │ │ │ ├── HelveticaExtraBold.ttf │ │ │ ├── HelveticaLight.ttf │ │ │ ├── HelveticaMedium.ttf │ │ │ └── HelveticaRegular.ttf │ ├── example │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── at_common_flutter_example │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── example.md │ │ ├── ios │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Podfile │ │ │ ├── Podfile.lock │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── Runner-Bridging-Header.h │ │ ├── lib │ │ │ └── main.dart │ │ ├── macos │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── Flutter-Debug.xcconfig │ │ │ │ ├── Flutter-Release.xcconfig │ │ │ │ └── GeneratedPluginRegistrant.swift │ │ │ ├── Podfile │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── app_icon_1024.png │ │ │ │ │ ├── app_icon_128.png │ │ │ │ │ ├── app_icon_16.png │ │ │ │ │ ├── app_icon_256.png │ │ │ │ │ ├── app_icon_32.png │ │ │ │ │ ├── app_icon_512.png │ │ │ │ │ └── app_icon_64.png │ │ │ │ ├── Base.lproj │ │ │ │ └── MainMenu.xib │ │ │ │ ├── Configs │ │ │ │ ├── AppInfo.xcconfig │ │ │ │ ├── Debug.xcconfig │ │ │ │ ├── Release.xcconfig │ │ │ │ └── Warnings.xcconfig │ │ │ │ ├── DebugProfile.entitlements │ │ │ │ ├── Info.plist │ │ │ │ ├── MainFlutterWindow.swift │ │ │ │ └── Release.entitlements │ │ ├── pubspec.yaml │ │ └── test │ │ │ └── widget_test.dart │ ├── lib │ │ ├── at_common_flutter.dart │ │ ├── services │ │ │ └── size_config.dart │ │ ├── utils │ │ │ ├── colors.dart │ │ │ ├── text_strings.dart │ │ │ └── text_styles.dart │ │ └── widgets │ │ │ ├── custom_app_bar.dart │ │ │ ├── custom_button.dart │ │ │ └── custom_input_field.dart │ ├── pubspec.yaml │ └── test │ │ ├── at_common_flutter_test.dart │ │ ├── test_material_app.dart │ │ └── widget_tests │ │ ├── custom_appbar_test.dart │ │ ├── custom_button_test.dart │ │ └── custom_input_field_test.dart ├── at_commons │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── lib │ │ ├── at_builders.dart │ │ ├── at_commons.dart │ │ ├── atsign.dart │ │ └── src │ │ │ ├── at_constants.dart │ │ │ ├── at_message.dart │ │ │ ├── at_root_domain.dart │ │ │ ├── atserver │ │ │ └── atserver_events.dart │ │ │ ├── auth │ │ │ └── auth_mode.dart │ │ │ ├── buffer │ │ │ ├── at_buffer.dart │ │ │ └── at_buffer_impl.dart │ │ │ ├── enroll │ │ │ ├── enrollment.dart │ │ │ └── enrollment_constants.dart │ │ │ ├── exception │ │ │ ├── at_client_exceptions.dart │ │ │ ├── at_exception_manager.dart │ │ │ ├── at_exception_stack.dart │ │ │ ├── at_exception_utils.dart │ │ │ ├── at_exceptions.dart │ │ │ ├── at_server_exceptions.dart │ │ │ └── error_message.dart │ │ │ ├── keystore │ │ │ ├── at_key.dart │ │ │ ├── at_key_builder.dart │ │ │ ├── at_key_builder_impl.dart │ │ │ ├── at_key_util.dart │ │ │ ├── key_type.dart │ │ │ └── public_key_hash.dart │ │ │ ├── security │ │ │ └── secure_socket_config.dart │ │ │ ├── shared_key_status.dart │ │ │ ├── telemetry │ │ │ └── at_telemetry.dart │ │ │ ├── utils │ │ │ ├── at_key_regex_utils.dart │ │ │ └── string_utils.dart │ │ │ ├── validators │ │ │ ├── at_key_validation.dart │ │ │ └── at_key_validation_impl.dart │ │ │ └── verb │ │ │ ├── abstract_verb_builder.dart │ │ │ ├── batch │ │ │ ├── batch_request.dart │ │ │ └── batch_response.dart │ │ │ ├── config_verb_builder.dart │ │ │ ├── delete_verb_builder.dart │ │ │ ├── enroll_params.dart │ │ │ ├── enroll_params.g.dart │ │ │ ├── enroll_verb_builder.dart │ │ │ ├── from_verb_builder.dart │ │ │ ├── keys_verb_builder.dart │ │ │ ├── llookup_verb_builder.dart │ │ │ ├── lookup_verb_builder.dart │ │ │ ├── monitor_verb_builder.dart │ │ │ ├── notify_all_verb_builder.dart │ │ │ ├── notify_fetch_verb_builder.dart │ │ │ ├── notify_list_verb_builder.dart │ │ │ ├── notify_remove_builder.dart │ │ │ ├── notify_status_verb_builder.dart │ │ │ ├── notify_verb_builder.dart │ │ │ ├── operation_enum.dart │ │ │ ├── pkam_verb_builder.dart │ │ │ ├── plookup_verb_builder.dart │ │ │ ├── response.dart │ │ │ ├── scan_verb_builder.dart │ │ │ ├── stats_verb_builder.dart │ │ │ ├── sync_verb_builder.dart │ │ │ ├── syntax.dart │ │ │ ├── update_json.dart │ │ │ ├── update_verb_builder.dart │ │ │ ├── verb_builder.dart │ │ │ └── verb_util.dart │ ├── pubspec.yaml │ └── test │ │ ├── at_exception_stack_test.dart │ │ ├── at_key_regex_group_test.dart │ │ ├── at_key_regex_test.dart │ │ ├── at_key_test.dart │ │ ├── at_key_type_test.dart │ │ ├── at_root_domain_test.dart │ │ ├── atserver_events_test.dart │ │ ├── delete_verb_test.dart │ │ ├── enroll_params_test.dart │ │ ├── enroll_verb_builder_test.dart │ │ ├── from_verb_test.dart │ │ ├── keys_verb_builder_test.dart │ │ ├── llookup_verb_test.dart │ │ ├── lookup_verb_builder_test.dart │ │ ├── monitor_verb_builder_test.dart │ │ ├── notify_verb_builder_test.dart │ │ ├── otp_verb_test.dart │ │ ├── pkam_verb_builder_test.dart │ │ ├── plookup_verb_builder_test.dart │ │ ├── public_key_hash_test.dart │ │ ├── scan_verb_test.dart │ │ ├── string_buffer_test.dart │ │ ├── sync_verb_builder_test.dart │ │ ├── syntax_test.dart │ │ ├── test_keys.dart │ │ ├── test_utils.dart │ │ ├── update_verb_builder_test.dart │ │ └── verb_util_test.dart ├── at_contact │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── LICENSE.md │ ├── README.md │ ├── analysis_options.yaml │ ├── lib │ │ ├── at_contact.dart │ │ └── src │ │ │ ├── at_contacts_impl.dart │ │ │ ├── config │ │ │ └── app_constants.dart │ │ │ ├── model │ │ │ ├── at_contact.dart │ │ │ └── at_group.dart │ │ │ └── service │ │ │ ├── at_contacts_library.dart │ │ │ └── util_service.dart │ ├── pubspec.yaml │ └── test │ │ ├── at_contact_tests.dart │ │ ├── at_group_test.dart │ │ └── test_util.dart ├── at_contacts_flutter │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ ├── settings.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── kotlin │ │ │ └── com │ │ │ └── atsign │ │ │ └── at_contacts_flutter │ │ │ └── AtContactsFlutterPlugin.kt │ ├── assets │ │ ├── imagePlaceholder.png │ │ └── send.png │ ├── example │ │ ├── .env │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── at_contacts_flutter_example │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── example.md │ │ ├── ios │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Podfile │ │ │ ├── Podfile.lock │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── Runner-Bridging-Header.h │ │ ├── lib │ │ │ ├── main.dart │ │ │ └── second_screen.dart │ │ ├── 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 │ │ │ │ │ ├── app_icon_1024.png │ │ │ │ │ ├── app_icon_128.png │ │ │ │ │ ├── app_icon_16.png │ │ │ │ │ ├── app_icon_256.png │ │ │ │ │ ├── app_icon_32.png │ │ │ │ │ ├── app_icon_512.png │ │ │ │ │ └── app_icon_64.png │ │ │ │ ├── Base.lproj │ │ │ │ └── MainMenu.xib │ │ │ │ ├── Configs │ │ │ │ ├── AppInfo.xcconfig │ │ │ │ ├── Debug.xcconfig │ │ │ │ ├── Release.xcconfig │ │ │ │ └── Warnings.xcconfig │ │ │ │ ├── DebugProfile.entitlements │ │ │ │ ├── Info.plist │ │ │ │ ├── MainFlutterWindow.swift │ │ │ │ └── Release.entitlements │ │ ├── pubspec.yaml │ │ ├── test │ │ │ └── widget_test.dart │ │ ├── web │ │ │ ├── favicon.png │ │ │ ├── icons │ │ │ │ ├── Icon-192.png │ │ │ │ ├── Icon-512.png │ │ │ │ ├── Icon-maskable-192.png │ │ │ │ └── Icon-maskable-512.png │ │ │ ├── index.html │ │ │ └── manifest.json │ │ └── 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 │ ├── ios │ │ ├── .gitignore │ │ ├── Assets │ │ │ └── .gitkeep │ │ ├── Classes │ │ │ ├── AtContactsFlutterPlugin.h │ │ │ ├── AtContactsFlutterPlugin.m │ │ │ └── SwiftAtContactsFlutterPlugin.swift │ │ └── at_contacts_flutter.podspec │ ├── lib │ │ ├── at_contacts_flutter.dart │ │ ├── desktop_screens │ │ │ └── desktop_contacts_screen.dart │ │ ├── models │ │ │ └── contact_base_model.dart │ │ ├── screens │ │ │ ├── blocked_screen.dart │ │ │ └── contacts_screen.dart │ │ ├── services │ │ │ └── contact_service.dart │ │ ├── utils │ │ │ ├── colors.dart │ │ │ ├── exposed_service.dart │ │ │ ├── images.dart │ │ │ ├── init_contacts_service.dart │ │ │ ├── text_strings.dart │ │ │ └── text_styles.dart │ │ └── widgets │ │ │ ├── add_contacts_dialog.dart │ │ │ ├── add_singular_contact_dialog.dart │ │ │ ├── blocked_user_card.dart │ │ │ ├── bottom_sheet.dart │ │ │ ├── circular_contacts.dart │ │ │ ├── common_button.dart │ │ │ ├── contacts_initials.dart │ │ │ ├── custom_circle_avatar.dart │ │ │ ├── custom_list_tile.dart │ │ │ ├── custom_search_field.dart │ │ │ ├── error_screen.dart │ │ │ └── horizontal_list_view.dart │ ├── linux │ │ ├── CMakeLists.txt │ │ ├── at_contacts_flutter_plugin.cc │ │ └── include │ │ │ └── at_contacts_flutter │ │ │ └── at_contacts_flutter_plugin.h │ ├── macos │ │ ├── Classes │ │ │ └── AtContactsFlutterPlugin.swift │ │ └── at_contacts_flutter.podspec │ ├── pubspec.yaml │ ├── test │ │ ├── test_material_app.dart │ │ ├── unit_tests │ │ │ ├── blocked_screen_test.dart │ │ │ └── contact_screen_test.dart │ │ └── widget_tests │ │ │ ├── add_contacts_dialog_test.dart │ │ │ ├── add_singular_contact_dialog_test.dart │ │ │ ├── bottom_sheet_test.dart │ │ │ ├── common_button_test.dart │ │ │ ├── contacts_initials_test.dart │ │ │ ├── custom_serach_field_test.dart │ │ │ ├── error_screen_test.dart │ │ │ └── horizontal_list_view_test.dart │ └── windows │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── at_contacts_flutter_plugin.cpp │ │ └── include │ │ └── at_contacts_flutter │ │ └── at_contacts_flutter_plugin.h ├── at_contacts_group_flutter │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ ├── settings.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── kotlin │ │ │ └── com │ │ │ └── atsign │ │ │ └── at_contacts_group_flutter │ │ │ └── AtContactsGroupFlutterPlugin.kt │ ├── assets │ │ └── images │ │ │ ├── empty_group.png │ │ │ └── send.png │ ├── example │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── at_contacts_group_flutter_example │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── example.md │ │ ├── ios │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Podfile │ │ │ ├── Podfile.lock │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── Runner-Bridging-Header.h │ │ ├── lib │ │ │ ├── main.dart │ │ │ └── second_screen.dart │ │ ├── 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 │ │ │ │ │ ├── app_icon_1024.png │ │ │ │ │ ├── app_icon_128.png │ │ │ │ │ ├── app_icon_16.png │ │ │ │ │ ├── app_icon_256.png │ │ │ │ │ ├── app_icon_32.png │ │ │ │ │ ├── app_icon_512.png │ │ │ │ │ └── app_icon_64.png │ │ │ │ ├── Base.lproj │ │ │ │ └── MainMenu.xib │ │ │ │ ├── Configs │ │ │ │ ├── AppInfo.xcconfig │ │ │ │ ├── Debug.xcconfig │ │ │ │ ├── Release.xcconfig │ │ │ │ └── Warnings.xcconfig │ │ │ │ ├── DebugProfile.entitlements │ │ │ │ ├── Info.plist │ │ │ │ ├── MainFlutterWindow.swift │ │ │ │ └── Release.entitlements │ │ ├── pubspec.yaml │ │ └── test │ │ │ └── widget_test.dart │ ├── ios │ │ ├── .gitignore │ │ ├── Assets │ │ │ └── .gitkeep │ │ ├── Classes │ │ │ ├── AtContactsGroupFlutterPlugin.h │ │ │ ├── AtContactsGroupFlutterPlugin.m │ │ │ └── SwiftAtContactsGroupFlutterPlugin.swift │ │ └── at_contacts_group_flutter.podspec │ ├── lib │ │ ├── at_contacts_group_flutter.dart │ │ ├── desktop_routes │ │ │ ├── desktop_route_names.dart │ │ │ └── desktop_routes.dart │ │ ├── desktop_screens │ │ │ ├── desktop_bottom_sheet.dart │ │ │ ├── desktop_empty_group.dart │ │ │ ├── desktop_group_detail.dart │ │ │ ├── desktop_group_initial_screen.dart │ │ │ ├── desktop_group_list.dart │ │ │ ├── desktop_group_view.dart │ │ │ └── desktop_new_group.dart │ │ ├── models │ │ │ └── group_contacts_model.dart │ │ ├── screens │ │ │ ├── edit │ │ │ │ ├── group_edit.dart │ │ │ │ └── person_horizontal.dart │ │ │ ├── empty_group │ │ │ │ └── empty_group.dart │ │ │ ├── group_contact_view │ │ │ │ └── group_contact_view.dart │ │ │ ├── group_view │ │ │ │ └── group_view.dart │ │ │ ├── list │ │ │ │ └── group_list.dart │ │ │ └── new_group │ │ │ │ └── new_group.dart │ │ ├── services │ │ │ ├── desktop_image_picker.dart │ │ │ ├── group_service.dart │ │ │ ├── image_picker.dart │ │ │ └── navigation_service.dart │ │ ├── utils │ │ │ ├── colors.dart │ │ │ ├── images.dart │ │ │ ├── init_group_service.dart │ │ │ ├── text_constants.dart │ │ │ └── text_styles.dart │ │ └── widgets │ │ │ ├── add_contacts_group_dialog.dart │ │ │ ├── add_single_contact_group.dart │ │ │ ├── bottom_sheet.dart │ │ │ ├── circular_contacts.dart │ │ │ ├── circular_group_contact.dart │ │ │ ├── confirmation_dialog.dart │ │ │ ├── contact_initial.dart │ │ │ ├── contacts_selction_bottom_sheet.dart │ │ │ ├── custom_circle_avatar.dart │ │ │ ├── custom_input_field.dart │ │ │ ├── custom_list_tile.dart │ │ │ ├── custom_popup_route.dart │ │ │ ├── custom_toast.dart │ │ │ ├── desktop_custom_input_field.dart │ │ │ ├── desktop_custom_person_tile.dart │ │ │ ├── desktop_header.dart │ │ │ ├── desktop_person_horizontal_tile.dart │ │ │ ├── desktop_person_vertical_tile.dart │ │ │ ├── error_screen.dart │ │ │ ├── horizontal_circular_list.dart │ │ │ ├── loading_widget.dart │ │ │ ├── person_horizontal_tile.dart │ │ │ ├── person_vertical_tile.dart │ │ │ ├── pop_button.dart │ │ │ ├── remove_trusted_contact_dialog.dart │ │ │ ├── triple_dot_loading.dart │ │ │ └── yes_no_dialog.dart │ ├── linux │ │ ├── CMakeLists.txt │ │ ├── at_contacts_group_flutter_plugin.cc │ │ └── include │ │ │ └── at_contacts_group_flutter │ │ │ └── at_contacts_group_flutter_plugin.h │ ├── macos │ │ ├── Classes │ │ │ └── AtContactsGroupFlutterPlugin.swift │ │ └── at_contacts_group_flutter.podspec │ ├── pubspec.yaml │ ├── test │ │ ├── at_contacts_group_flutter_test.dart │ │ ├── test_material_app.dart │ │ └── widget_tests │ │ │ ├── add_contacts_group_dialog_test.dart │ │ │ ├── add_single_contact_group_test.dart │ │ │ ├── bottom_sheet_test.dart │ │ │ ├── confirmation_dialog_test.dart │ │ │ ├── contact_initial_test.dart │ │ │ ├── contacts_selection_bottom_sheet_test.dart │ │ │ ├── custom_input_field_test.dart │ │ │ ├── desktop_custom_input_field_test.dart │ │ │ ├── desktop_custom_person_tile.dart │ │ │ ├── desktop_header_test.dart │ │ │ ├── desktop_person_horizontal_tile.dart │ │ │ ├── desktop_person_vertical_tile.dart │ │ │ ├── error_screen.dart │ │ │ ├── horizontal_circular_list_test.dart │ │ │ ├── person_horizontal_tile_test.dart │ │ │ ├── person_vertical_tile.dart │ │ │ ├── pop_button_test.dart │ │ │ └── triple_dot_loading_test.dart │ └── windows │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── at_contacts_group_flutter_plugin.cpp │ │ └── include │ │ └── at_contacts_group_flutter │ │ └── at_contacts_group_flutter_plugin.h ├── at_events_flutter │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ ├── settings.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── kotlin │ │ │ └── com │ │ │ └── atsign │ │ │ └── at_events_flutter │ │ │ └── AtEventsFlutterPlugin.kt │ ├── example │ │ ├── .env │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── EXAMPLE.md │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── at_events_flutter_example │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── ios │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Podfile │ │ │ ├── Podfile.lock │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── Runner-Bridging-Header.h │ │ ├── lib │ │ │ ├── main.dart │ │ │ └── second_screen.dart │ │ ├── macos │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── Flutter-Debug.xcconfig │ │ │ │ ├── Flutter-Release.xcconfig │ │ │ │ └── GeneratedPluginRegistrant.swift │ │ │ ├── Podfile │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── app_icon_1024.png │ │ │ │ │ ├── app_icon_128.png │ │ │ │ │ ├── app_icon_16.png │ │ │ │ │ ├── app_icon_256.png │ │ │ │ │ ├── app_icon_32.png │ │ │ │ │ ├── app_icon_512.png │ │ │ │ │ └── app_icon_64.png │ │ │ │ ├── Base.lproj │ │ │ │ └── MainMenu.xib │ │ │ │ ├── Configs │ │ │ │ ├── AppInfo.xcconfig │ │ │ │ ├── Debug.xcconfig │ │ │ │ ├── Release.xcconfig │ │ │ │ └── Warnings.xcconfig │ │ │ │ ├── DebugProfile.entitlements │ │ │ │ ├── Info.plist │ │ │ │ ├── MainFlutterWindow.swift │ │ │ │ └── Release.entitlements │ │ ├── pubspec.yaml │ │ └── test │ │ │ └── widget_test.dart │ ├── ios │ │ ├── .gitignore │ │ ├── Assets │ │ │ └── .gitkeep │ │ ├── Classes │ │ │ ├── AtEventsFlutterPlugin.h │ │ │ ├── AtEventsFlutterPlugin.m │ │ │ └── SwiftAtEventsFlutterPlugin.swift │ │ └── at_events_flutter.podspec │ ├── lib │ │ ├── at_events_flutter.dart │ │ ├── common_components │ │ │ ├── bottom_sheet.dart │ │ │ ├── concurrent_event_request_dialog.dart │ │ │ ├── contact_list_tile.dart │ │ │ ├── contacts_initials.dart │ │ │ ├── custom_button.dart │ │ │ ├── custom_circle_avatar.dart │ │ │ ├── custom_heading.dart │ │ │ ├── custom_popup_route.dart │ │ │ ├── custom_toast.dart │ │ │ ├── display_tile.dart │ │ │ ├── draggable_symbol.dart │ │ │ ├── error_screen.dart │ │ │ ├── event_time_selection.dart │ │ │ ├── floating_icon.dart │ │ │ ├── invite_card.dart │ │ │ ├── loading_widget.dart │ │ │ ├── location_tile.dart │ │ │ ├── overlapping_contacts.dart │ │ │ ├── pop_button.dart │ │ │ ├── text_tile.dart │ │ │ └── triple_dot_loading.dart │ │ ├── models │ │ │ ├── enums_model.dart │ │ │ ├── event_key_location_model.dart │ │ │ ├── event_member_location.dart │ │ │ ├── event_notification.dart │ │ │ └── hybrid_notifiation_model.dart │ │ ├── screens │ │ │ ├── create_event.dart │ │ │ ├── map_screen │ │ │ │ ├── events_collapsed_content.dart │ │ │ │ ├── events_map_screen.dart │ │ │ │ └── participants.dart │ │ │ ├── notification_dialog │ │ │ │ └── event_notification_dialog.dart │ │ │ ├── one_day_event.dart │ │ │ ├── recurring_event.dart │ │ │ ├── select_location.dart │ │ │ └── selected_location.dart │ │ ├── services │ │ │ ├── at_event_notification_listener.dart │ │ │ ├── contact_service.dart │ │ │ ├── event_key_stream_service.dart │ │ │ ├── event_services.dart │ │ │ ├── home_event_service.dart │ │ │ └── venues_services.dart │ │ └── utils │ │ │ ├── colors.dart │ │ │ ├── constants.dart │ │ │ ├── init_events_service.dart │ │ │ ├── text_styles.dart │ │ │ └── texts.dart │ ├── pubspec.yaml │ └── test │ │ ├── at_events_flutter_test.dart │ │ ├── test_material_app.dart │ │ └── widget_tests │ │ ├── contact_list_tile_test.dart │ │ ├── custom_heading_test.dart │ │ ├── draggable_symbol_test.dart │ │ ├── error_screen_test.dart │ │ ├── floating_icon_test.dart │ │ ├── location_tile_test.dart │ │ ├── pop_button_test.dart │ │ ├── text_tile_test.dart │ │ └── triple_dot_loading_test.dart ├── at_follows_flutter │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── android │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ ├── settings.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── kotlin │ │ │ └── com │ │ │ └── atsign │ │ │ └── at_follows_flutter │ │ │ └── AtFollowsFlutterPlugin.kt │ ├── assets │ │ ├── images │ │ │ ├── colin.jpg │ │ │ └── qrscan.png │ │ └── jsons │ │ │ ├── followers.json │ │ │ └── following.json │ ├── example │ │ ├── .env │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── atsign │ │ │ │ │ │ │ └── at_follows_flutter_example │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ │ └── notification_icon.png │ │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ │ └── notification_icon.png │ │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ │ └── notification_icon.png │ │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ │ └── notification_icon.png │ │ │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ │ │ └── notification_icon.png │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── ios │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ ├── Release.xcconfig │ │ │ │ └── ephemeral │ │ │ │ │ ├── flutter_lldb_helper.py │ │ │ │ │ └── flutter_lldbinit │ │ │ ├── Podfile │ │ │ ├── Podfile.lock │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── Runner-Bridging-Header.h │ │ ├── lib │ │ │ ├── main.dart │ │ │ ├── screens │ │ │ │ └── follows_screen.dart │ │ │ ├── services │ │ │ │ ├── at_service.dart │ │ │ │ └── notification_service.dart │ │ │ └── utils │ │ │ │ ├── app_config.dart │ │ │ │ ├── app_constants.dart │ │ │ │ └── app_strings.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ └── widget_test.dart │ ├── ios │ │ ├── .gitignore │ │ ├── Assets │ │ │ └── .gitkeep │ │ ├── Classes │ │ │ ├── AtFollowsFlutterPlugin.h │ │ │ ├── AtFollowsFlutterPlugin.m │ │ │ └── SwiftAtFollowsFlutterPlugin.swift │ │ └── at_follows_flutter.podspec │ ├── lib │ │ ├── at_follows_flutter.dart │ │ ├── domain │ │ │ ├── at_follows_list.dart │ │ │ ├── atsign.dart │ │ │ └── connection_model.dart │ │ ├── exceptions │ │ │ ├── at_exception_handler.dart │ │ │ └── at_follows_exceptions.dart │ │ ├── screens │ │ │ ├── connections.dart │ │ │ ├── notifications.dart │ │ │ └── qrscan.dart │ │ ├── services │ │ │ ├── connections_service.dart │ │ │ ├── notification_service.dart │ │ │ ├── sdk_service.dart │ │ │ └── size_config.dart │ │ ├── utils │ │ │ ├── app_constants.dart │ │ │ ├── at_follow_services.dart │ │ │ ├── color_constants.dart │ │ │ ├── custom_textstyles.dart │ │ │ ├── images.dart │ │ │ ├── json.dart │ │ │ └── strings.dart │ │ └── widgets │ │ │ ├── custom_appbar.dart │ │ │ ├── custom_button.dart │ │ │ ├── error_dialog.dart │ │ │ ├── followers.dart │ │ │ └── web_view_screen.dart │ ├── pubspec.yaml │ └── test │ │ ├── at_demo_credentials.dart │ │ ├── at_follows_flutter_test.dart │ │ ├── test_material_app.dart │ │ ├── unit_tests │ │ └── connections_service_test.dart │ │ └── widgets_test │ │ ├── custom_appbar_test.dart │ │ ├── error_dialog_test.dart │ │ └── web_view_screen_test.dart ├── at_invitation_flutter │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ ├── settings.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ └── com │ │ │ └── atsign │ │ │ └── at_invitation_flutter │ │ │ └── AtInvitationFlutterPlugin.java │ ├── example │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── at_invitation_flutter_example │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── example.md │ │ ├── ios │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Podfile │ │ │ ├── Podfile.lock │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── Runner-Bridging-Header.h │ │ ├── lib │ │ │ ├── constants.dart │ │ │ ├── main.dart │ │ │ └── second_screen.dart │ │ ├── macos │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── Flutter-Debug.xcconfig │ │ │ │ ├── Flutter-Release.xcconfig │ │ │ │ └── GeneratedPluginRegistrant.swift │ │ │ ├── Podfile │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── app_icon_1024.png │ │ │ │ │ ├── app_icon_128.png │ │ │ │ │ ├── app_icon_16.png │ │ │ │ │ ├── app_icon_256.png │ │ │ │ │ ├── app_icon_32.png │ │ │ │ │ ├── app_icon_512.png │ │ │ │ │ └── app_icon_64.png │ │ │ │ ├── Base.lproj │ │ │ │ └── MainMenu.xib │ │ │ │ ├── Configs │ │ │ │ ├── AppInfo.xcconfig │ │ │ │ ├── Debug.xcconfig │ │ │ │ ├── Release.xcconfig │ │ │ │ └── Warnings.xcconfig │ │ │ │ ├── DebugProfile.entitlements │ │ │ │ ├── Info.plist │ │ │ │ ├── MainFlutterWindow.swift │ │ │ │ └── Release.entitlements │ │ ├── pubspec.yaml │ │ └── test │ │ │ └── widget_test.dart │ ├── ios │ │ ├── .gitignore │ │ ├── Assets │ │ │ └── .gitkeep │ │ ├── Classes │ │ │ ├── AtInvitationFlutterPlugin.h │ │ │ ├── AtInvitationFlutterPlugin.m │ │ │ └── SwiftAtInvitationFlutterPlugin.swift │ │ └── at_invitation_flutter.podspec │ ├── lib │ │ ├── at_invitation_flutter.dart │ │ ├── models │ │ │ └── message_share.dart │ │ ├── services │ │ │ └── invitation_service.dart │ │ ├── utils │ │ │ ├── init_invitation_service.dart │ │ │ └── text_styles.dart │ │ └── widgets │ │ │ ├── otp_dialog.dart │ │ │ └── share_dialog.dart │ ├── pubspec.yaml │ ├── test │ │ ├── at_invitation_flutter_test.dart │ │ ├── test_material_app.dart │ │ └── widgets_test │ │ │ ├── otp_dialog_test.dart │ │ │ └── share_dialog_test.dart │ └── webpage_content │ │ ├── cookieManager.js │ │ ├── index.html │ │ ├── overview.md │ │ ├── userFlow.png │ │ └── websiteFlow.png ├── at_location_flutter │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ ├── settings.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── kotlin │ │ │ └── com │ │ │ └── atsign │ │ │ └── at_location_flutter │ │ │ └── AtLocationFlutterPlugin.kt │ ├── example │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── EXAMPLE.md │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── at_location_flutter_example │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── ios │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Podfile │ │ │ ├── Podfile.lock │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── Runner-Bridging-Header.h │ │ ├── lib │ │ │ ├── main.dart │ │ │ └── second_screen.dart │ │ ├── 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 │ │ │ │ │ ├── app_icon_1024.png │ │ │ │ │ ├── app_icon_128.png │ │ │ │ │ ├── app_icon_16.png │ │ │ │ │ ├── app_icon_256.png │ │ │ │ │ ├── app_icon_32.png │ │ │ │ │ ├── app_icon_512.png │ │ │ │ │ └── app_icon_64.png │ │ │ │ ├── Base.lproj │ │ │ │ └── MainMenu.xib │ │ │ │ ├── Configs │ │ │ │ ├── AppInfo.xcconfig │ │ │ │ ├── Debug.xcconfig │ │ │ │ ├── Release.xcconfig │ │ │ │ └── Warnings.xcconfig │ │ │ │ ├── DebugProfile.entitlements │ │ │ │ ├── Info.plist │ │ │ │ ├── MainFlutterWindow.swift │ │ │ │ └── Release.entitlements │ │ ├── pubspec.yaml │ │ └── test │ │ │ └── widget_test.dart │ ├── ios │ │ ├── .gitignore │ │ ├── Assets │ │ │ └── .gitkeep │ │ ├── Classes │ │ │ ├── AtLocationFlutterPlugin.h │ │ │ ├── AtLocationFlutterPlugin.m │ │ │ └── SwiftAtLocationFlutterPlugin.swift │ │ └── at_location_flutter.podspec │ ├── lib │ │ ├── assets │ │ │ └── images │ │ │ │ └── empty_group.png │ │ ├── at_location_flutter.dart │ │ ├── at_location_flutter_plugin.dart │ │ ├── common_components │ │ │ ├── bottom_sheet.dart │ │ │ ├── build_marker.dart │ │ │ ├── circle_marker_painter.dart │ │ │ ├── collapsed_content.dart │ │ │ ├── confirmation_dialog.dart │ │ │ ├── contacts_initial.dart │ │ │ ├── custom_circle_avatar.dart │ │ │ ├── custom_popup_route.dart │ │ │ ├── custom_toast.dart │ │ │ ├── display_tile.dart │ │ │ ├── draggable_symbol.dart │ │ │ ├── floating_icon.dart │ │ │ ├── loading_widget.dart │ │ │ ├── location_prompt_dialog.dart │ │ │ ├── marker_cluster.dart │ │ │ ├── marker_custom_painter.dart │ │ │ ├── pointed_bottom.dart │ │ │ ├── pop_button.dart │ │ │ ├── popup.dart │ │ │ ├── tasks.dart │ │ │ ├── text_tile.dart │ │ │ └── text_tile_repeater.dart │ │ ├── location_modal │ │ │ ├── hybrid_model.dart │ │ │ ├── key_location_model.dart │ │ │ ├── location_data_model.dart │ │ │ ├── location_modal.dart │ │ │ └── location_notification.dart │ │ ├── map_content │ │ │ ├── flutter_map │ │ │ │ ├── flutter_map.dart │ │ │ │ └── src │ │ │ │ │ ├── core │ │ │ │ │ ├── bounds.dart │ │ │ │ │ ├── center_zoom.dart │ │ │ │ │ ├── point.dart │ │ │ │ │ └── util.dart │ │ │ │ │ ├── geo │ │ │ │ │ ├── crs │ │ │ │ │ │ └── crs.dart │ │ │ │ │ └── latlng_bounds.dart │ │ │ │ │ ├── gestures │ │ │ │ │ ├── gestures.dart │ │ │ │ │ └── latlng_tween.dart │ │ │ │ │ ├── layer │ │ │ │ │ ├── circle_layer.dart │ │ │ │ │ ├── group_layer.dart │ │ │ │ │ ├── layer.dart │ │ │ │ │ ├── marker_layer.dart │ │ │ │ │ ├── overlay_image_layer.dart │ │ │ │ │ ├── polygon_layer.dart │ │ │ │ │ ├── polyline_layer.dart │ │ │ │ │ ├── tile_layer.dart │ │ │ │ │ └── tile_provider │ │ │ │ │ │ └── tile_provider.dart │ │ │ │ │ ├── map │ │ │ │ │ ├── flutter_map_state.dart │ │ │ │ │ ├── map.dart │ │ │ │ │ └── map_state_widget.dart │ │ │ │ │ └── plugins │ │ │ │ │ └── plugin.dart │ │ │ ├── flutter_map_marker_cluster │ │ │ │ └── src │ │ │ │ │ ├── anim_type.dart │ │ │ │ │ ├── core │ │ │ │ │ ├── distance_grid.dart │ │ │ │ │ ├── quick_hull.dart │ │ │ │ │ └── spiderfy.dart │ │ │ │ │ ├── marker_cluster_layer.dart │ │ │ │ │ ├── marker_cluster_layer_options.dart │ │ │ │ │ ├── marker_cluster_plugin.dart │ │ │ │ │ └── node │ │ │ │ │ ├── marker_cluster_node.dart │ │ │ │ │ └── marker_node.dart │ │ │ └── flutter_map_marker_popup │ │ │ │ └── src │ │ │ │ ├── marker_popup.dart │ │ │ │ ├── popup_builder.dart │ │ │ │ ├── popup_container.dart │ │ │ │ ├── popup_controller.dart │ │ │ │ ├── popup_event.dart │ │ │ │ ├── popup_event_actions.dart │ │ │ │ ├── popup_marker_layer.dart │ │ │ │ ├── popup_marker_layer_options.dart │ │ │ │ ├── popup_marker_layer_plugin.dart │ │ │ │ ├── popup_position.dart │ │ │ │ └── popup_snap.dart │ │ ├── screens │ │ │ ├── home │ │ │ │ └── home_screen.dart │ │ │ ├── map_screen │ │ │ │ └── map_screen.dart │ │ │ ├── notification_dialog │ │ │ │ └── notification_dialog.dart │ │ │ ├── request_location │ │ │ │ └── request_location_sheet.dart │ │ │ └── share_location │ │ │ │ └── share_location_sheet.dart │ │ ├── service │ │ │ ├── api_service.dart │ │ │ ├── at_location_notification_listener.dart │ │ │ ├── contact_service.dart │ │ │ ├── distance_calculate.dart │ │ │ ├── home_screen_service.dart │ │ │ ├── key_stream_service.dart │ │ │ ├── location_service.dart │ │ │ ├── master_location_service.dart │ │ │ ├── my_location.dart │ │ │ ├── notify_and_put.dart │ │ │ ├── request_location_service.dart │ │ │ ├── search_location_service.dart │ │ │ ├── send_location_notification.dart │ │ │ └── sharing_location_service.dart │ │ ├── show_location.dart │ │ └── utils │ │ │ └── constants │ │ │ ├── colors.dart │ │ │ ├── constants.dart │ │ │ ├── init_location_service.dart │ │ │ ├── text_strings.dart │ │ │ └── text_styles.dart │ ├── pubspec.yaml │ └── test │ │ ├── at_location_flutter_test.dart │ │ ├── test_material_app.dart │ │ └── widgets_test │ │ ├── contacts_inital_test.dart │ │ ├── display_tile_test.dart │ │ ├── floating_icon_test.dart │ │ ├── pop_button_test.dart │ │ ├── tasks_test.dart │ │ └── text_tile_test.dart ├── at_login_flutter │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── android │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ ├── settings.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── kotlin │ │ │ └── com │ │ │ └── example │ │ │ └── at_login_flutter │ │ │ └── AtLoginFlutterPlugin.kt │ ├── example │ │ ├── .env │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── atsign │ │ │ │ │ │ │ └── at_login_example │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── ios │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Podfile │ │ │ ├── Podfile.lock │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── Runner-Bridging-Header.h │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ └── widget_test.dart │ ├── ios │ │ ├── .gitignore │ │ ├── Assets │ │ │ └── .gitkeep │ │ ├── Classes │ │ │ ├── AtLoginFlutterPlugin.h │ │ │ ├── AtLoginFlutterPlugin.m │ │ │ └── SwiftAtLoginFlutterPlugin.swift │ │ └── at_login_flutter.podspec │ ├── lib │ │ ├── at_login_flutter.dart │ │ ├── domain │ │ │ ├── at_login_list.dart │ │ │ ├── at_login_model.dart │ │ │ └── at_login_provider.dart │ │ ├── exceptions │ │ │ └── at_login_exceptions.dart │ │ ├── services │ │ │ ├── at_login_service.dart │ │ │ ├── custom_nav.dart │ │ │ ├── notification_service.dart │ │ │ ├── sdk_service.dart │ │ │ └── size_config.dart │ │ ├── utils │ │ │ ├── app_constants.dart │ │ │ ├── at_login_utils.dart │ │ │ ├── color_constants.dart │ │ │ ├── custom_textstyles.dart │ │ │ └── strings.dart │ │ └── widgets │ │ │ ├── at_login_dashboard_widget.dart │ │ │ ├── at_login_widget.dart │ │ │ ├── custom_appbar.dart │ │ │ └── notifications.dart │ ├── macos │ │ ├── Classes │ │ │ └── AtLoginFlutterPlugin.swift │ │ └── at_login_flutter.podspec │ ├── pubspec.yaml │ └── test │ │ ├── at_login_flutter_test.dart │ │ └── unit_tests │ │ └── login_service_test.dart ├── at_lookup │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── example │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── bin │ │ │ └── example.dart │ │ └── pubspec.yaml │ ├── lib │ │ ├── at_lookup.dart │ │ └── src │ │ │ ├── at_lookup.dart │ │ │ ├── at_lookup_impl.dart │ │ │ ├── cache │ │ │ ├── cacheable_secondary_address_finder.dart │ │ │ └── secondary_address_finder.dart │ │ │ ├── connection │ │ │ ├── at_connection.dart │ │ │ ├── base_connection.dart │ │ │ ├── outbound_connection.dart │ │ │ ├── outbound_connection_impl.dart │ │ │ └── outbound_message_listener.dart │ │ │ ├── exception │ │ │ └── at_lookup_exception.dart │ │ │ ├── monitor_client.dart │ │ │ └── util │ │ │ ├── lookup_util.dart │ │ │ └── secure_socket_util.dart │ ├── pubspec.yaml │ └── test │ │ ├── at_lookup_test.dart │ │ ├── at_lookup_test_utils.dart │ │ ├── connection_management_test.dart │ │ ├── mutex_test.dart │ │ ├── outbound_message_listener_test.dart │ │ └── secondary_address_cache_test.dart ├── at_notify_flutter │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ ├── settings.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── kotlin │ │ │ └── com │ │ │ └── atsign │ │ │ └── at_notify_flutter │ │ │ └── AtNotifyFlutterPlugin.kt │ ├── example │ │ ├── .env │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── EXAMPLE.md │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── at_notify_flutter_example │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── ios │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Podfile │ │ │ ├── Podfile.lock │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── Runner-Bridging-Header.h │ │ ├── lib │ │ │ ├── main.dart │ │ │ └── second_screen.dart │ │ ├── macos │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── Flutter-Debug.xcconfig │ │ │ │ ├── Flutter-Release.xcconfig │ │ │ │ └── GeneratedPluginRegistrant.swift │ │ │ ├── Podfile │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── app_icon_1024.png │ │ │ │ │ ├── app_icon_128.png │ │ │ │ │ ├── app_icon_16.png │ │ │ │ │ ├── app_icon_256.png │ │ │ │ │ ├── app_icon_32.png │ │ │ │ │ ├── app_icon_512.png │ │ │ │ │ └── app_icon_64.png │ │ │ │ ├── Base.lproj │ │ │ │ └── MainMenu.xib │ │ │ │ ├── Configs │ │ │ │ ├── AppInfo.xcconfig │ │ │ │ ├── Debug.xcconfig │ │ │ │ ├── Release.xcconfig │ │ │ │ └── Warnings.xcconfig │ │ │ │ ├── DebugProfile.entitlements │ │ │ │ ├── Info.plist │ │ │ │ ├── MainFlutterWindow.swift │ │ │ │ └── Release.entitlements │ │ ├── pubspec.yaml │ │ └── test │ │ │ └── widget_test.dart │ ├── ios │ │ ├── .gitignore │ │ ├── Classes │ │ │ ├── AtNotifyFlutterPlugin.h │ │ │ ├── AtNotifyFlutterPlugin.m │ │ │ └── SwiftAtNotifyFlutterPlugin.swift │ │ └── at_notify_flutter.podspec │ ├── lib │ │ ├── at_notify_flutter.dart │ │ ├── models │ │ │ └── notify_model.dart │ │ ├── screens │ │ │ └── notify_screen.dart │ │ ├── services │ │ │ └── notify_service.dart │ │ └── utils │ │ │ ├── init_notify_service.dart │ │ │ ├── notify_utils.dart │ │ │ └── strings.dart │ ├── pubspec.yaml │ ├── test │ │ ├── at_notify_flutter_test.dart │ │ ├── test_material_app.dart │ │ └── widgets_test │ │ │ └── notify_screen_test.dart │ └── web │ │ ├── favicon.png │ │ ├── icons │ │ ├── Icon-192.png │ │ └── Icon-512.png │ │ ├── index.html │ │ └── manifest.json ├── at_onboarding_cli │ ├── .gitignore │ ├── .pubignore │ ├── CHANGELOG.md │ ├── Dockerfile │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── bin │ │ ├── activate_cli.dart │ │ └── register_cli.dart │ ├── example │ │ ├── README.md │ │ ├── apkam_examples │ │ │ ├── apkam_authenticate.dart │ │ │ ├── apkam_enroll.dart │ │ │ └── enroll_app_listen.dart │ │ ├── get_cram_key.dart │ │ ├── legacy_examples │ │ │ ├── activate.dart │ │ │ └── authenticate.dart │ │ ├── onboard.dart │ │ └── util │ │ │ ├── atsign_preference.dart │ │ │ └── custom_arg_parser.dart │ ├── lib │ │ ├── at_onboarding_cli.dart │ │ └── src │ │ │ ├── activate_cli │ │ │ └── activate_cli.dart │ │ │ ├── cli │ │ │ ├── auth_cli.dart │ │ │ ├── auth_cli_arg_validation.dart │ │ │ └── auth_cli_args.dart │ │ │ ├── factory │ │ │ └── service_factories.dart │ │ │ ├── onboard │ │ │ ├── at_onboarding_service.dart │ │ │ └── at_onboarding_service_impl.dart │ │ │ ├── register_cli │ │ │ └── register.dart │ │ │ └── util │ │ │ ├── api_call_status.dart │ │ │ ├── at_onboarding_exceptions.dart │ │ │ ├── at_onboarding_preference.dart │ │ │ ├── auth_key_type.dart │ │ │ ├── create_at_client_cli.dart │ │ │ ├── home_directory_util.dart │ │ │ ├── onboarding_util.dart │ │ │ ├── print_full_parser_usage.dart │ │ │ ├── register_api_result.dart │ │ │ ├── register_api_task.dart │ │ │ ├── registrar_api_constants.dart │ │ │ └── request_enrollment_otp.dart │ ├── pubspec.yaml │ └── test │ │ ├── at_onboarding_cli_test.dart │ │ ├── auth_cli_test.dart │ │ ├── data │ │ └── @alice🛠_key.atKeys │ │ ├── fake_registrar.dart │ │ └── onboard_prompt_test.dart ├── at_onboarding_flutter │ ├── .gitignore │ ├── .metadata │ ├── .pubignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ ├── settings.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── kotlin │ │ │ └── com │ │ │ └── atsign │ │ │ └── at_onboarding_flutter │ │ │ └── AtOnboardingFlutterPlugin.kt │ ├── assets │ │ └── images │ │ │ ├── backup_key.png │ │ │ └── backup_zip.png │ ├── example │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── example.md │ │ ├── ios │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Podfile │ │ │ ├── Podfile.lock │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── Runner-Bridging-Header.h │ │ ├── lib │ │ │ ├── contact_initial.dart │ │ │ ├── main.dart │ │ │ └── switch_atsign.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 │ │ │ │ │ ├── app_icon_1024.png │ │ │ │ │ ├── app_icon_128.png │ │ │ │ │ ├── app_icon_16.png │ │ │ │ │ ├── app_icon_256.png │ │ │ │ │ ├── app_icon_32.png │ │ │ │ │ ├── app_icon_512.png │ │ │ │ │ └── app_icon_64.png │ │ │ │ ├── Base.lproj │ │ │ │ └── MainMenu.xib │ │ │ │ ├── Configs │ │ │ │ ├── AppInfo.xcconfig │ │ │ │ ├── Debug.xcconfig │ │ │ │ ├── Release.xcconfig │ │ │ │ └── Warnings.xcconfig │ │ │ │ ├── DebugProfile.entitlements │ │ │ │ ├── Info.plist │ │ │ │ ├── MainFlutterWindow.swift │ │ │ │ └── Release.entitlements │ │ ├── pubspec.yaml │ │ ├── test │ │ │ └── widget_test.dart │ │ └── 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 │ ├── ios │ │ ├── .gitignore │ │ ├── Assets │ │ │ └── .gitkeep │ │ ├── Classes │ │ │ ├── AtOnboardingFlutterPlugin.h │ │ │ ├── AtOnboardingFlutterPlugin.m │ │ │ └── SwiftAtOnboardingFlutterPlugin.swift │ │ └── at_onboarding_flutter.podspec │ ├── lib │ │ ├── at_onboarding.dart │ │ ├── at_onboarding_flutter.dart │ │ ├── at_onboarding_result.dart │ │ ├── localizations │ │ │ ├── generated │ │ │ │ ├── intl │ │ │ │ │ ├── messages_all.dart │ │ │ │ │ ├── messages_en.dart │ │ │ │ │ └── messages_fr.dart │ │ │ │ └── l10n.dart │ │ │ └── l10n │ │ │ │ ├── intl_en.arb │ │ │ │ └── intl_fr.arb │ │ ├── screen │ │ │ ├── at_onboarding_accounts_screen.dart │ │ │ ├── at_onboarding_activate_screen.dart │ │ │ ├── at_onboarding_backup_screen.dart │ │ │ ├── at_onboarding_generate_screen.dart │ │ │ ├── at_onboarding_home_screen.dart │ │ │ ├── at_onboarding_input_atsign_screen.dart │ │ │ ├── at_onboarding_intro_screen.dart │ │ │ ├── at_onboarding_otp_screen.dart │ │ │ ├── at_onboarding_pair_screen.dart │ │ │ ├── at_onboarding_qrcode_screen.dart │ │ │ ├── at_onboarding_reference_screen.dart │ │ │ ├── at_onboarding_reset_screen.dart │ │ │ ├── at_onboarding_start_screen.dart │ │ │ └── at_onboarding_webview_screen.dart │ │ ├── services │ │ │ ├── at_onboarding_backup_service.dart │ │ │ ├── at_onboarding_config.dart │ │ │ ├── at_onboarding_theme.dart │ │ │ ├── at_onboarding_tutorial_service.dart │ │ │ ├── backend_service.dart │ │ │ ├── free_atsign_service.dart │ │ │ ├── onboarding_service.dart │ │ │ └── sdk_service.dart │ │ ├── utils │ │ │ ├── at_onboarding_app_constants.dart │ │ │ ├── at_onboarding_dimens.dart │ │ │ ├── at_onboarding_error_util.dart │ │ │ ├── at_onboarding_input_formatter.dart │ │ │ ├── at_onboarding_response_status.dart │ │ │ └── at_onboarding_strings.dart │ │ └── widgets │ │ │ ├── at_onboarding_button.dart │ │ │ └── at_onboarding_dialog.dart │ ├── linux │ │ ├── CMakeLists.txt │ │ ├── at_onboarding_flutter_plugin.cc │ │ └── include │ │ │ └── at_onboarding_flutter │ │ │ └── at_onboarding_flutter_plugin.h │ ├── localization_script.sh │ ├── macos │ │ ├── Classes │ │ │ └── AtOnboardingFlutterPlugin.swift │ │ └── at_onboarding_flutter.podspec │ ├── pubspec.yaml │ ├── test │ │ ├── onboarding_data_test.dart │ │ ├── screens │ │ │ ├── at_onboarding_accounts_screen_test.dart │ │ │ ├── at_onboarding_activate_screen_test.dart │ │ │ ├── at_onboarding_backup_screen_test.dart │ │ │ ├── at_onboarding_generate_screen_test.dart │ │ │ ├── at_onboarding_input_atsign_screen_test.dart │ │ │ ├── at_onboarding_otp_screen_test.dart │ │ │ ├── at_onboarding_pair_screen_test.dart │ │ │ ├── at_onboarding_qrcode_screen_test.dart │ │ │ ├── at_onboarding_reference_screen_test.dart │ │ │ ├── at_onboarding_reset_screen_test.dart │ │ │ └── at_onboarding_start_screen_test.dart │ │ ├── services │ │ │ ├── onboarding_service_test.dart │ │ │ └── sdk_service_test.dart │ │ ├── test_material_app.dart │ │ ├── utils │ │ │ └── at_onboarding_error_util_test.dart │ │ └── widgets │ │ │ ├── at_onboarding_button_test.dart │ │ │ └── at_onboarding_dialog_test.dart │ └── windows │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── at_onboarding_flutter_plugin.cpp │ │ └── include │ │ └── at_onboarding_flutter │ │ └── at_onboarding_flutter_plugin.h ├── at_policy │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── example │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── bin │ │ │ ├── client.dart │ │ │ ├── common.dart │ │ │ ├── policy.dart │ │ │ └── service.dart │ │ └── pubspec.yaml │ ├── lib │ │ ├── at_policy.dart │ │ └── src │ │ │ ├── policy │ │ │ ├── impl.dart │ │ │ ├── interfaces.dart │ │ │ ├── models.dart │ │ │ └── models.g.dart │ │ │ └── version.dart │ ├── pubspec.yaml │ └── test │ │ └── at_policy_test.dart ├── at_server_status │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── example │ │ └── at_server_status_example.dart │ ├── lib │ │ ├── at_server_status.dart │ │ ├── at_status_impl.dart │ │ └── src │ │ │ ├── at_server_status_base.dart │ │ │ └── model │ │ │ └── at_status.dart │ ├── pubspec.yaml │ └── test │ │ └── at_server_status_test.dart ├── at_sync_ui_flutter │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── example │ │ ├── .env │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── EXAMPLE.md │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── ios │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Podfile │ │ │ ├── Podfile.lock │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── Runner-Bridging-Header.h │ │ ├── lib │ │ │ ├── custom_sync_widget.dart │ │ │ ├── main.dart │ │ │ ├── second_screen.dart │ │ │ └── ui_options.dart │ │ ├── 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 │ │ │ │ │ ├── app_icon_1024.png │ │ │ │ │ ├── app_icon_128.png │ │ │ │ │ ├── app_icon_16.png │ │ │ │ │ ├── app_icon_256.png │ │ │ │ │ ├── app_icon_32.png │ │ │ │ │ ├── app_icon_512.png │ │ │ │ │ └── app_icon_64.png │ │ │ │ ├── Base.lproj │ │ │ │ └── MainMenu.xib │ │ │ │ ├── Configs │ │ │ │ ├── AppInfo.xcconfig │ │ │ │ ├── Debug.xcconfig │ │ │ │ ├── Release.xcconfig │ │ │ │ └── Warnings.xcconfig │ │ │ │ ├── DebugProfile.entitlements │ │ │ │ ├── Info.plist │ │ │ │ ├── MainFlutterWindow.swift │ │ │ │ └── Release.entitlements │ │ ├── pubspec.yaml │ │ ├── test │ │ │ └── widget_test.dart │ │ └── web │ │ │ ├── favicon.png │ │ │ ├── icons │ │ │ ├── Icon-192.png │ │ │ ├── Icon-512.png │ │ │ ├── Icon-maskable-192.png │ │ │ └── Icon-maskable-512.png │ │ │ ├── index.html │ │ │ └── manifest.json │ ├── lib │ │ ├── at_sync_cupertino.dart │ │ ├── at_sync_material.dart │ │ ├── at_sync_progress_indicator.dart │ │ ├── at_sync_ui.dart │ │ ├── at_sync_ui_flutter.dart │ │ └── services │ │ │ └── at_sync_ui_services.dart │ ├── pubspec.yaml │ └── test │ │ ├── at_sync_ui_flutter_test.dart │ │ ├── test_material_app.dart │ │ └── widgets_test │ │ ├── at_sync_cupertino_test.dart │ │ └── at_sync_material_test.dart ├── at_theme_flutter │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── example │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── at_theme_flutter_example │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── example.md │ │ ├── ios │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Podfile │ │ │ ├── Podfile.lock │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── Runner-Bridging-Header.h │ │ ├── lib │ │ │ ├── main.dart │ │ │ └── src │ │ │ │ ├── pages │ │ │ │ └── profile_page.dart │ │ │ │ └── utils │ │ │ │ ├── color_constants.dart │ │ │ │ └── text_styles.dart │ │ ├── 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 │ │ │ │ │ ├── app_icon_1024.png │ │ │ │ │ ├── app_icon_128.png │ │ │ │ │ ├── app_icon_16.png │ │ │ │ │ ├── app_icon_256.png │ │ │ │ │ ├── app_icon_32.png │ │ │ │ │ ├── app_icon_512.png │ │ │ │ │ └── app_icon_64.png │ │ │ │ ├── Base.lproj │ │ │ │ └── MainMenu.xib │ │ │ │ ├── Configs │ │ │ │ ├── AppInfo.xcconfig │ │ │ │ ├── Debug.xcconfig │ │ │ │ ├── Release.xcconfig │ │ │ │ └── Warnings.xcconfig │ │ │ │ ├── DebugProfile.entitlements │ │ │ │ ├── Info.plist │ │ │ │ ├── MainFlutterWindow.swift │ │ │ │ └── Release.entitlements │ │ ├── pubspec.yaml │ │ └── test │ │ │ └── widget_test.dart │ ├── lib │ │ ├── at_theme_flutter.dart │ │ ├── services │ │ │ └── theme_service.dart │ │ ├── src │ │ │ ├── app_theme.dart │ │ │ ├── color_constants.dart │ │ │ ├── inherited_app_theme.dart │ │ │ └── widgets │ │ │ │ ├── color_card.dart │ │ │ │ ├── custom_toast.dart │ │ │ │ ├── theme_mode_card.dart │ │ │ │ └── theme_setting_page.dart │ │ └── utils │ │ │ ├── constants.dart │ │ │ └── init_theme_flutter.dart │ ├── pubspec.yaml │ └── test │ │ ├── at_theme_flutter_test.dart │ │ ├── test_material_app.dart │ │ └── widget_tests │ │ ├── color_card_test.dart │ │ ├── theme_mode_card_test.dart │ │ └── theme_setting_page_test.dart ├── at_utils │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── example │ │ └── main.dart │ ├── lib │ │ ├── at_logger.dart │ │ ├── at_progress.dart │ │ ├── at_utils.dart │ │ └── src │ │ │ ├── atmetadata_utils.dart │ │ │ ├── atsign_util.dart │ │ │ ├── config │ │ │ └── app_config.dart │ │ │ ├── logging │ │ │ ├── atsignlogger.dart │ │ │ ├── handlers.dart │ │ │ └── progress.dart │ │ │ └── networking │ │ │ └── pseudo_server_socket.dart │ ├── pubspec.yaml │ └── test │ │ ├── at_metadata_test.dart │ │ ├── fix_at_sign_test.dart │ │ └── logging_test.dart ├── base2e15 │ ├── .gitattributes │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── all_chars.txt │ ├── lib │ │ └── base2e15.dart │ ├── pubspec.yaml │ └── test │ │ └── all_test.dart └── dart_utf7 │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── example │ └── utf7_example.dart │ ├── lib │ ├── src │ │ └── dart_utf7.dart │ └── utf7.dart │ ├── pubspec.yaml │ └── test │ └── utf7_test.dart ├── pubspec.yaml ├── tests ├── at_end2end_test │ ├── CHANGELOG.md │ ├── README.md │ ├── analysis_options.yaml │ ├── config │ │ ├── config14.yaml │ │ └── config23.yaml │ ├── lib │ │ ├── config │ │ │ └── config_util.dart │ │ ├── src │ │ │ ├── at_credentials.dart │ │ │ ├── at_encryption_key_initializers.dart │ │ │ ├── at_test_credentials.dart │ │ │ ├── sync_initializer.dart │ │ │ ├── test_initializers.dart │ │ │ └── test_preferences.dart │ │ └── utils │ │ │ └── test_constants.dart │ ├── pubspec.yaml │ └── test │ │ ├── bypasscache_test.dart │ │ ├── collection_test.dart │ │ ├── commit_log_compaction_test.dart │ │ ├── delete_old_test_data.dart │ │ ├── deletion_key_test.dart │ │ ├── encryption_test.dart │ │ ├── enrollment_setup.dart │ │ ├── enrollment_teardown.dart │ │ ├── key_stream_test.dart │ │ ├── notify_test.dart │ │ ├── notify_with_isolate_test.dart │ │ └── sharing_key_test.dart ├── at_functional_test │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── analysis_options.yaml │ ├── config │ │ └── config.yaml │ ├── lib │ │ └── src │ │ │ ├── at_demo_credentials.dart │ │ │ ├── at_keys_initializer.dart │ │ │ ├── config_util.dart │ │ │ ├── sync_progress_listener.dart │ │ │ └── sync_service.dart │ ├── pubspec.yaml │ ├── runLocal.sh │ ├── test │ │ ├── at_client_delete_test.dart │ │ ├── at_client_sync_test.dart │ │ ├── at_exception_test.dart │ │ ├── at_lookup_race_test.dart │ │ ├── atclient_notify_test.dart │ │ ├── atclient_pkam_auth_test.dart │ │ ├── atclient_put_test.dart │ │ ├── atclient_put_text_test.dart │ │ ├── atclient_remote_secondary_test.dart │ │ ├── atclient_sharedkey_test.dart │ │ ├── atclient_sync_callback_test.dart │ │ ├── atclient_sync_conflict_test.dart │ │ ├── atkey_static_test.dart │ │ ├── check_docker_readiness.dart │ │ ├── check_test_env.dart │ │ ├── collection_test.dart │ │ ├── commit_log_compaction_test.dart │ │ ├── docker-compose.yaml │ │ ├── encryption_test.dart │ │ ├── enrollment_test.dart │ │ ├── stats_notification_sync_test.dart │ │ ├── sync_multiple_client_test.dart │ │ ├── testData │ │ │ └── dev.png │ │ └── test_utils.dart │ └── test_scenarios │ │ └── atclient_apkam.feature ├── at_onboarding_cli_functional_tests │ ├── README.md │ ├── check_docker_readiness.dart │ ├── check_test_env.dart │ ├── docker-compose.yaml │ ├── pubspec.yaml │ ├── test │ │ ├── at_onboarding_cli_test.dart │ │ ├── ecc_secure_element_mock_test.dart │ │ ├── enrollment_cli_commands_test.dart │ │ ├── enrollment_test.dart │ │ └── utils │ │ │ ├── at_chops_secure_element_mock.dart │ │ │ ├── enrollment_operations.dart │ │ │ └── onboarding_service_impl_override.dart │ └── test_scenarios │ │ └── apkam │ │ └── onboarding_cli.feature └── at_onboarding_cli_functional_tests_proxy │ ├── .gitignore │ ├── README.md │ ├── check_docker_readiness.dart │ ├── docker-compose.yaml │ ├── docs │ ├── image.png │ └── testing_strategy.md │ ├── lib │ ├── at_demo_data_wrapper.dart │ ├── docker_utils.dart │ └── features │ │ ├── approve_command.dart │ │ ├── cleanup_utils.dart │ │ ├── enroll_command.dart │ │ ├── list_enrollments_command.dart │ │ ├── onboard_command.dart │ │ ├── otp_command.dart │ │ └── validate_keys.dart │ ├── pubspec.yaml │ ├── restart.sh │ └── test │ └── cli_test.dart └── tools ├── cicd1x64 └── update_ce2e_images.sh └── cicd2x64 └── update_ce2e_images.sh /.github/ISSUE_TEMPLATE-temp/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/.github/ISSUE_TEMPLATE-temp/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE-temp/feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/.github/ISSUE_TEMPLATE-temp/feature_request.yaml -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/semantic.yml: -------------------------------------------------------------------------------- 1 | titleOnly: true 2 | -------------------------------------------------------------------------------- /.github/workflows/at_client_sdk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/.github/workflows/at_client_sdk.yaml -------------------------------------------------------------------------------- /.github/workflows/at_libraries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/.github/workflows/at_libraries.yaml -------------------------------------------------------------------------------- /.github/workflows/at_widgets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/.github/workflows/at_widgets.yml -------------------------------------------------------------------------------- /.github/workflows/autobug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/.github/workflows/autobug.yaml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/flutter-channel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/.github/workflows/flutter-channel.yaml -------------------------------------------------------------------------------- /.github/workflows/osv-scanner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/.github/workflows/osv-scanner.yaml -------------------------------------------------------------------------------- /.github/workflows/scorecards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/.github/workflows/scorecards.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/SECURITY.md -------------------------------------------------------------------------------- /actions/setup-flutter-and-dart/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/actions/setup-flutter-and-dart/action.yaml -------------------------------------------------------------------------------- /actions/setup-flutter-and-dart/flutter_ref-beta: -------------------------------------------------------------------------------- 1 | aec5680b7727eb4bcc675b3b7ee3d00be8474df0 2 | -------------------------------------------------------------------------------- /actions/setup-flutter-and-dart/flutter_ref-stable: -------------------------------------------------------------------------------- 1 | 19074d12f7eaf6a8180cd4036a430c1d76de904e 2 | -------------------------------------------------------------------------------- /code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/code_of_conduct.md -------------------------------------------------------------------------------- /images/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/images/image1.png -------------------------------------------------------------------------------- /images/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/images/image2.png -------------------------------------------------------------------------------- /images/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/images/image3.png -------------------------------------------------------------------------------- /images/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/images/image4.png -------------------------------------------------------------------------------- /images/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/images/image5.png -------------------------------------------------------------------------------- /images/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/images/image6.png -------------------------------------------------------------------------------- /images/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/images/image7.png -------------------------------------------------------------------------------- /packages/at_auth/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_auth/.gitignore -------------------------------------------------------------------------------- /packages/at_auth/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_auth/CHANGELOG.md -------------------------------------------------------------------------------- /packages/at_auth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_auth/LICENSE -------------------------------------------------------------------------------- /packages/at_auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_auth/README.md -------------------------------------------------------------------------------- /packages/at_auth/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_auth/analysis_options.yaml -------------------------------------------------------------------------------- /packages/at_auth/example/authenticate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_auth/example/authenticate.dart -------------------------------------------------------------------------------- /packages/at_auth/example/enrollment_request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_auth/example/enrollment_request.dart -------------------------------------------------------------------------------- /packages/at_auth/example/onboard.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_auth/example/onboard.dart -------------------------------------------------------------------------------- /packages/at_auth/lib/at_auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_auth/lib/at_auth.dart -------------------------------------------------------------------------------- /packages/at_auth/lib/src/at_auth_base.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_auth/lib/src/at_auth_base.dart -------------------------------------------------------------------------------- /packages/at_auth/lib/src/at_auth_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_auth/lib/src/at_auth_impl.dart -------------------------------------------------------------------------------- /packages/at_auth/lib/src/auth/at_auth_request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_auth/lib/src/auth/at_auth_request.dart -------------------------------------------------------------------------------- /packages/at_auth/lib/src/auth/at_auth_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_auth/lib/src/auth/at_auth_response.dart -------------------------------------------------------------------------------- /packages/at_auth/lib/src/auth/cram_authenticator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_auth/lib/src/auth/cram_authenticator.dart -------------------------------------------------------------------------------- /packages/at_auth/lib/src/auth/pkam_authenticator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_auth/lib/src/auth/pkam_authenticator.dart -------------------------------------------------------------------------------- /packages/at_auth/lib/src/auth_constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_auth/lib/src/auth_constants.dart -------------------------------------------------------------------------------- /packages/at_auth/lib/src/auth_interface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_auth/lib/src/auth_interface.dart -------------------------------------------------------------------------------- /packages/at_auth/lib/src/auth_interface_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_auth/lib/src/auth_interface_impl.dart -------------------------------------------------------------------------------- /packages/at_auth/lib/src/keys/at_auth_keys.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_auth/lib/src/keys/at_auth_keys.dart -------------------------------------------------------------------------------- /packages/at_auth/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_auth/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_auth/test/at_auth_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_auth/test/at_auth_test.dart -------------------------------------------------------------------------------- /packages/at_auth/test/cram_authenticator_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_auth/test/cram_authenticator_test.dart -------------------------------------------------------------------------------- /packages/at_auth/test/data/@alice🛠_key.atKeys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_auth/test/data/@alice🛠_key.atKeys -------------------------------------------------------------------------------- /packages/at_auth/test/enrollment_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_auth/test/enrollment_test.dart -------------------------------------------------------------------------------- /packages/at_auth/test/pkam_authenticator_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_auth/test/pkam_authenticator_test.dart -------------------------------------------------------------------------------- /packages/at_backupkey_flutter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_backupkey_flutter/.gitignore -------------------------------------------------------------------------------- /packages/at_backupkey_flutter/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_backupkey_flutter/.metadata -------------------------------------------------------------------------------- /packages/at_backupkey_flutter/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_backupkey_flutter/CHANGELOG.md -------------------------------------------------------------------------------- /packages/at_backupkey_flutter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_backupkey_flutter/LICENSE -------------------------------------------------------------------------------- /packages/at_backupkey_flutter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_backupkey_flutter/README.md -------------------------------------------------------------------------------- /packages/at_backupkey_flutter/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_backupkey_flutter/analysis_options.yaml -------------------------------------------------------------------------------- /packages/at_backupkey_flutter/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_backupkey_flutter/android/.gitignore -------------------------------------------------------------------------------- /packages/at_backupkey_flutter/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_backupkey_flutter/android/build.gradle -------------------------------------------------------------------------------- /packages/at_backupkey_flutter/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'at_backupkey_flutter' 2 | -------------------------------------------------------------------------------- /packages/at_backupkey_flutter/example/.env: -------------------------------------------------------------------------------- 1 | ROOT_DOMAIN = 'root.atsign.org' 2 | -------------------------------------------------------------------------------- /packages/at_backupkey_flutter/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_backupkey_flutter/example/.gitignore -------------------------------------------------------------------------------- /packages/at_backupkey_flutter/example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_backupkey_flutter/example/.metadata -------------------------------------------------------------------------------- /packages/at_backupkey_flutter/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_backupkey_flutter/example/README.md -------------------------------------------------------------------------------- /packages/at_backupkey_flutter/example/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_backupkey_flutter/example/example.md -------------------------------------------------------------------------------- /packages/at_backupkey_flutter/example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_backupkey_flutter/example/ios/.gitignore -------------------------------------------------------------------------------- /packages/at_backupkey_flutter/example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_backupkey_flutter/example/ios/Podfile -------------------------------------------------------------------------------- /packages/at_backupkey_flutter/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /packages/at_backupkey_flutter/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_backupkey_flutter/example/lib/main.dart -------------------------------------------------------------------------------- /packages/at_backupkey_flutter/example/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /packages/at_backupkey_flutter/example/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_backupkey_flutter/example/linux/main.cc -------------------------------------------------------------------------------- /packages/at_backupkey_flutter/example/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_backupkey_flutter/example/macos/Podfile -------------------------------------------------------------------------------- /packages/at_backupkey_flutter/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_backupkey_flutter/example/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_backupkey_flutter/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_backupkey_flutter/ios/.gitignore -------------------------------------------------------------------------------- /packages/at_backupkey_flutter/ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/at_backupkey_flutter/lib/utils/strings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_backupkey_flutter/lib/utils/strings.dart -------------------------------------------------------------------------------- /packages/at_backupkey_flutter/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_backupkey_flutter/linux/CMakeLists.txt -------------------------------------------------------------------------------- /packages/at_backupkey_flutter/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_backupkey_flutter/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_backupkey_flutter/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_backupkey_flutter/windows/.gitignore -------------------------------------------------------------------------------- /packages/at_backupkey_flutter/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_backupkey_flutter/windows/CMakeLists.txt -------------------------------------------------------------------------------- /packages/at_chat_flutter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chat_flutter/.gitignore -------------------------------------------------------------------------------- /packages/at_chat_flutter/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chat_flutter/.metadata -------------------------------------------------------------------------------- /packages/at_chat_flutter/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chat_flutter/CHANGELOG.md -------------------------------------------------------------------------------- /packages/at_chat_flutter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chat_flutter/LICENSE -------------------------------------------------------------------------------- /packages/at_chat_flutter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chat_flutter/README.md -------------------------------------------------------------------------------- /packages/at_chat_flutter/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chat_flutter/analysis_options.yaml -------------------------------------------------------------------------------- /packages/at_chat_flutter/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chat_flutter/android/.gitignore -------------------------------------------------------------------------------- /packages/at_chat_flutter/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chat_flutter/android/build.gradle -------------------------------------------------------------------------------- /packages/at_chat_flutter/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chat_flutter/android/gradle.properties -------------------------------------------------------------------------------- /packages/at_chat_flutter/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'at_chat_flutter' 2 | -------------------------------------------------------------------------------- /packages/at_chat_flutter/assets/imagePlaceholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chat_flutter/assets/imagePlaceholder.png -------------------------------------------------------------------------------- /packages/at_chat_flutter/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chat_flutter/example/.gitignore -------------------------------------------------------------------------------- /packages/at_chat_flutter/example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chat_flutter/example/.metadata -------------------------------------------------------------------------------- /packages/at_chat_flutter/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chat_flutter/example/README.md -------------------------------------------------------------------------------- /packages/at_chat_flutter/example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chat_flutter/example/android/.gitignore -------------------------------------------------------------------------------- /packages/at_chat_flutter/example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chat_flutter/example/android/build.gradle -------------------------------------------------------------------------------- /packages/at_chat_flutter/example/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chat_flutter/example/example.md -------------------------------------------------------------------------------- /packages/at_chat_flutter/example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chat_flutter/example/ios/.gitignore -------------------------------------------------------------------------------- /packages/at_chat_flutter/example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chat_flutter/example/ios/Podfile -------------------------------------------------------------------------------- /packages/at_chat_flutter/example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chat_flutter/example/ios/Podfile.lock -------------------------------------------------------------------------------- /packages/at_chat_flutter/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /packages/at_chat_flutter/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chat_flutter/example/lib/main.dart -------------------------------------------------------------------------------- /packages/at_chat_flutter/example/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chat_flutter/example/macos/.gitignore -------------------------------------------------------------------------------- /packages/at_chat_flutter/example/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chat_flutter/example/macos/Podfile -------------------------------------------------------------------------------- /packages/at_chat_flutter/example/macos/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chat_flutter/example/macos/Podfile.lock -------------------------------------------------------------------------------- /packages/at_chat_flutter/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chat_flutter/example/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_chat_flutter/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chat_flutter/ios/.gitignore -------------------------------------------------------------------------------- /packages/at_chat_flutter/ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/at_chat_flutter/ios/at_chat_flutter.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chat_flutter/ios/at_chat_flutter.podspec -------------------------------------------------------------------------------- /packages/at_chat_flutter/lib/at_chat_flutter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chat_flutter/lib/at_chat_flutter.dart -------------------------------------------------------------------------------- /packages/at_chat_flutter/lib/screens/chat_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chat_flutter/lib/screens/chat_screen.dart -------------------------------------------------------------------------------- /packages/at_chat_flutter/lib/utils/colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chat_flutter/lib/utils/colors.dart -------------------------------------------------------------------------------- /packages/at_chat_flutter/lib/utils/dialog_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chat_flutter/lib/utils/dialog_utils.dart -------------------------------------------------------------------------------- /packages/at_chat_flutter/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chat_flutter/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_chat_flutter/test/test_material_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chat_flutter/test/test_material_app.dart -------------------------------------------------------------------------------- /packages/at_chops/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/.gitignore -------------------------------------------------------------------------------- /packages/at_chops/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/CHANGELOG.md -------------------------------------------------------------------------------- /packages/at_chops/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/LICENSE -------------------------------------------------------------------------------- /packages/at_chops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/README.md -------------------------------------------------------------------------------- /packages/at_chops/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/analysis_options.yaml -------------------------------------------------------------------------------- /packages/at_chops/example/at_chops_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/example/at_chops_example.dart -------------------------------------------------------------------------------- /packages/at_chops/example/zariot/external_signer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/example/zariot/external_signer.dart -------------------------------------------------------------------------------- /packages/at_chops/lib/at_chops.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/lib/at_chops.dart -------------------------------------------------------------------------------- /packages/at_chops/lib/src/algorithm/algo_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/lib/src/algorithm/algo_type.dart -------------------------------------------------------------------------------- /packages/at_chops/lib/src/algorithm/at_algorithm.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/lib/src/algorithm/at_algorithm.dart -------------------------------------------------------------------------------- /packages/at_chops/lib/src/algorithm/at_iv.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/lib/src/algorithm/at_iv.dart -------------------------------------------------------------------------------- /packages/at_chops/lib/src/at_chops_base.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/lib/src/at_chops_base.dart -------------------------------------------------------------------------------- /packages/at_chops/lib/src/at_chops_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/lib/src/at_chops_impl.dart -------------------------------------------------------------------------------- /packages/at_chops/lib/src/at_keys_crypto.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/lib/src/at_keys_crypto.dart -------------------------------------------------------------------------------- /packages/at_chops/lib/src/key/at_key_pair.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/lib/src/key/at_key_pair.dart -------------------------------------------------------------------------------- /packages/at_chops/lib/src/key/at_private_key.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/lib/src/key/at_private_key.dart -------------------------------------------------------------------------------- /packages/at_chops/lib/src/key/at_public_key.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/lib/src/key/at_public_key.dart -------------------------------------------------------------------------------- /packages/at_chops/lib/src/key/impl/aes_key.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/lib/src/key/impl/aes_key.dart -------------------------------------------------------------------------------- /packages/at_chops/lib/src/key/impl/at_chops_keys.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/lib/src/key/impl/at_chops_keys.dart -------------------------------------------------------------------------------- /packages/at_chops/lib/src/key/impl/cram_key.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/lib/src/key/impl/cram_key.dart -------------------------------------------------------------------------------- /packages/at_chops/lib/src/key/key_names.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/lib/src/key/key_names.dart -------------------------------------------------------------------------------- /packages/at_chops/lib/src/key/key_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/lib/src/key/key_type.dart -------------------------------------------------------------------------------- /packages/at_chops/lib/src/model/at_encrypted.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/lib/src/model/at_encrypted.dart -------------------------------------------------------------------------------- /packages/at_chops/lib/src/model/hash_params.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/lib/src/model/hash_params.dart -------------------------------------------------------------------------------- /packages/at_chops/lib/src/util/at_chops_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/lib/src/util/at_chops_util.dart -------------------------------------------------------------------------------- /packages/at_chops/lib/types.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/lib/types.dart -------------------------------------------------------------------------------- /packages/at_chops/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_chops/test/aes_encrption_old_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/test/aes_encrption_old_impl.dart -------------------------------------------------------------------------------- /packages/at_chops/test/aes_encryption_algo_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/test/aes_encryption_algo_test.dart -------------------------------------------------------------------------------- /packages/at_chops/test/aes_key_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/test/aes_key_test.dart -------------------------------------------------------------------------------- /packages/at_chops/test/at_chops_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/test/at_chops_test.dart -------------------------------------------------------------------------------- /packages/at_chops/test/at_chops_util_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/test/at_chops_util_test.dart -------------------------------------------------------------------------------- /packages/at_chops/test/at_keys_crypto_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/test/at_keys_crypto_test.dart -------------------------------------------------------------------------------- /packages/at_chops/test/default_signing_algo_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/test/default_signing_algo_test.dart -------------------------------------------------------------------------------- /packages/at_chops/test/ecc_signing_algo_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/test/ecc_signing_algo_test.dart -------------------------------------------------------------------------------- /packages/at_chops/test/ed25519_signing_algo_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/test/ed25519_signing_algo_test.dart -------------------------------------------------------------------------------- /packages/at_chops/test/hashing_algo_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/test/hashing_algo_test.dart -------------------------------------------------------------------------------- /packages/at_chops/test/pkam_signing_algo_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/test/pkam_signing_algo_test.dart -------------------------------------------------------------------------------- /packages/at_chops/test/pkcs7_padding_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/test/pkcs7_padding_test.dart -------------------------------------------------------------------------------- /packages/at_chops/test/rsa_encryption_algo_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_chops/test/rsa_encryption_algo_test.dart -------------------------------------------------------------------------------- /packages/at_cli_commons/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_cli_commons/.gitignore -------------------------------------------------------------------------------- /packages/at_cli_commons/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_cli_commons/CHANGELOG.md -------------------------------------------------------------------------------- /packages/at_cli_commons/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_cli_commons/LICENSE -------------------------------------------------------------------------------- /packages/at_cli_commons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_cli_commons/README.md -------------------------------------------------------------------------------- /packages/at_cli_commons/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_cli_commons/analysis_options.yaml -------------------------------------------------------------------------------- /packages/at_cli_commons/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_cli_commons/example/.gitignore -------------------------------------------------------------------------------- /packages/at_cli_commons/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_cli_commons/example/README.md -------------------------------------------------------------------------------- /packages/at_cli_commons/example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_cli_commons/example/analysis_options.yaml -------------------------------------------------------------------------------- /packages/at_cli_commons/example/bin/scan_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_cli_commons/example/bin/scan_example.dart -------------------------------------------------------------------------------- /packages/at_cli_commons/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_cli_commons/example/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_cli_commons/lib/at_cli_commons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_cli_commons/lib/at_cli_commons.dart -------------------------------------------------------------------------------- /packages/at_cli_commons/lib/src/cli_base.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_cli_commons/lib/src/cli_base.dart -------------------------------------------------------------------------------- /packages/at_cli_commons/lib/src/sync_listener.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_cli_commons/lib/src/sync_listener.dart -------------------------------------------------------------------------------- /packages/at_cli_commons/lib/src/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_cli_commons/lib/src/utils.dart -------------------------------------------------------------------------------- /packages/at_cli_commons/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_cli_commons/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_cli_commons/test/utils_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_cli_commons/test/utils_test.dart -------------------------------------------------------------------------------- /packages/at_client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/.gitignore -------------------------------------------------------------------------------- /packages/at_client/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/CHANGELOG.md -------------------------------------------------------------------------------- /packages/at_client/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/LICENSE -------------------------------------------------------------------------------- /packages/at_client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/README.md -------------------------------------------------------------------------------- /packages/at_client/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/analysis_options.yaml -------------------------------------------------------------------------------- /packages/at_client/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/example/.gitignore -------------------------------------------------------------------------------- /packages/at_client/example/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.0.0 2 | 3 | - at_client package example. 4 | -------------------------------------------------------------------------------- /packages/at_client/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/example/README.md -------------------------------------------------------------------------------- /packages/at_client/example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/example/analysis_options.yaml -------------------------------------------------------------------------------- /packages/at_client/example/bin/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/example/bin/example.dart -------------------------------------------------------------------------------- /packages/at_client/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/example/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_client/lib/at_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/lib/at_client.dart -------------------------------------------------------------------------------- /packages/at_client/lib/at_client_mixins.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/lib/at_client_mixins.dart -------------------------------------------------------------------------------- /packages/at_client/lib/src/client/at_client_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/lib/src/client/at_client_impl.dart -------------------------------------------------------------------------------- /packages/at_client/lib/src/client/at_client_spec.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/lib/src/client/at_client_spec.dart -------------------------------------------------------------------------------- /packages/at_client/lib/src/client/secondary.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/lib/src/client/secondary.dart -------------------------------------------------------------------------------- /packages/at_client/lib/src/key_stream/key_stream.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/lib/src/key_stream/key_stream.dart -------------------------------------------------------------------------------- /packages/at_client/lib/src/manager/monitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/lib/src/manager/monitor.dart -------------------------------------------------------------------------------- /packages/at_client/lib/src/manager/sync_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/lib/src/manager/sync_manager.dart -------------------------------------------------------------------------------- /packages/at_client/lib/src/mixins/apkam_signing.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/lib/src/mixins/apkam_signing.dart -------------------------------------------------------------------------------- /packages/at_client/lib/src/response/enrollment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/lib/src/response/enrollment.dart -------------------------------------------------------------------------------- /packages/at_client/lib/src/response/json_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/lib/src/response/json_utils.dart -------------------------------------------------------------------------------- /packages/at_client/lib/src/response/response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/lib/src/response/response.dart -------------------------------------------------------------------------------- /packages/at_client/lib/src/rpc/at_rpc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/lib/src/rpc/at_rpc.dart -------------------------------------------------------------------------------- /packages/at_client/lib/src/rpc/at_rpc_types.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/lib/src/rpc/at_rpc_types.dart -------------------------------------------------------------------------------- /packages/at_client/lib/src/service/change.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/lib/src/service/change.dart -------------------------------------------------------------------------------- /packages/at_client/lib/src/service/change_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/lib/src/service/change_impl.dart -------------------------------------------------------------------------------- /packages/at_client/lib/src/service/sync_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/lib/src/service/sync_service.dart -------------------------------------------------------------------------------- /packages/at_client/lib/src/util/at_client_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/lib/src/util/at_client_util.dart -------------------------------------------------------------------------------- /packages/at_client/lib/src/util/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/lib/src/util/constants.dart -------------------------------------------------------------------------------- /packages/at_client/lib/src/util/encryption_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/lib/src/util/encryption_util.dart -------------------------------------------------------------------------------- /packages/at_client/lib/src/util/logger_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/lib/src/util/logger_util.dart -------------------------------------------------------------------------------- /packages/at_client/lib/src/util/regex_match_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/lib/src/util/regex_match_util.dart -------------------------------------------------------------------------------- /packages/at_client/lib/src/util/sync_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/lib/src/util/sync_util.dart -------------------------------------------------------------------------------- /packages/at_client/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_client/test/apkam_authorization_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/apkam_authorization_test.dart -------------------------------------------------------------------------------- /packages/at_client/test/at_client_impl_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/at_client_impl_test.dart -------------------------------------------------------------------------------- /packages/at_client/test/at_client_util_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/at_client_util_test.dart -------------------------------------------------------------------------------- /packages/at_client/test/at_key_validation_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/at_key_validation_test.dart -------------------------------------------------------------------------------- /packages/at_client/test/data/encryption/cat.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/data/encryption/cat.jpeg -------------------------------------------------------------------------------- /packages/at_client/test/data/encryption/dog.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/data/encryption/dog.jpeg -------------------------------------------------------------------------------- /packages/at_client/test/data/encryption/hello.txt: -------------------------------------------------------------------------------- 1 | hello there 2 | -------------------------------------------------------------------------------- /packages/at_client/test/decryption_service_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/decryption_service_test.dart -------------------------------------------------------------------------------- /packages/at_client/test/encryption_service_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/encryption_service_test.dart -------------------------------------------------------------------------------- /packages/at_client/test/encryption_util_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/encryption_util_test.dart -------------------------------------------------------------------------------- /packages/at_client/test/enrollment_service_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/enrollment_service_test.dart -------------------------------------------------------------------------------- /packages/at_client/test/file_encryption_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/file_encryption_test.dart -------------------------------------------------------------------------------- /packages/at_client/test/full_stack_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/full_stack_test.dart -------------------------------------------------------------------------------- /packages/at_client/test/local_secondary_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/local_secondary_test.dart -------------------------------------------------------------------------------- /packages/at_client/test/monitor_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/monitor_test.dart -------------------------------------------------------------------------------- /packages/at_client/test/put_request_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/put_request_test.dart -------------------------------------------------------------------------------- /packages/at_client/test/regex_match_util_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/regex_match_util_test.dart -------------------------------------------------------------------------------- /packages/at_client/test/remote_secondary_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/remote_secondary_test.dart -------------------------------------------------------------------------------- /packages/at_client/test/samples/binary_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/samples/binary_data.dart -------------------------------------------------------------------------------- /packages/at_client/test/samples/file_downloader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/samples/file_downloader.dart -------------------------------------------------------------------------------- /packages/at_client/test/samples/file_uploader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/samples/file_uploader.dart -------------------------------------------------------------------------------- /packages/at_client/test/samples/local_delete.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/samples/local_delete.dart -------------------------------------------------------------------------------- /packages/at_client/test/samples/local_lookup.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/samples/local_lookup.dart -------------------------------------------------------------------------------- /packages/at_client/test/samples/local_scan.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/samples/local_scan.dart -------------------------------------------------------------------------------- /packages/at_client/test/samples/local_update.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/samples/local_update.dart -------------------------------------------------------------------------------- /packages/at_client/test/samples/lookup.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/samples/lookup.dart -------------------------------------------------------------------------------- /packages/at_client/test/samples/remote_llookup.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/samples/remote_llookup.dart -------------------------------------------------------------------------------- /packages/at_client/test/samples/remote_lookup.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/samples/remote_lookup.dart -------------------------------------------------------------------------------- /packages/at_client/test/samples/remote_plookup.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/samples/remote_plookup.dart -------------------------------------------------------------------------------- /packages/at_client/test/samples/remote_scan.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/samples/remote_scan.dart -------------------------------------------------------------------------------- /packages/at_client/test/samples/remote_stats.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/samples/remote_stats.dart -------------------------------------------------------------------------------- /packages/at_client/test/samples/remote_update.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/samples/remote_update.dart -------------------------------------------------------------------------------- /packages/at_client/test/samples/setup_localkeys.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/samples/setup_localkeys.dart -------------------------------------------------------------------------------- /packages/at_client/test/samples/test_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/samples/test_util.dart -------------------------------------------------------------------------------- /packages/at_client/test/self_key_decryption_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/self_key_decryption_test.dart -------------------------------------------------------------------------------- /packages/at_client/test/self_key_encryption_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/self_key_encryption_test.dart -------------------------------------------------------------------------------- /packages/at_client/test/switch_atsign_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/switch_atsign_test.dart -------------------------------------------------------------------------------- /packages/at_client/test/sync_new_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/sync_new_test.dart -------------------------------------------------------------------------------- /packages/at_client/test/sync_service_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/sync_service_test.dart -------------------------------------------------------------------------------- /packages/at_client/test/sync_util_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/sync_util_test.dart -------------------------------------------------------------------------------- /packages/at_client/test/test_utils/test_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/test_utils/test_utils.dart -------------------------------------------------------------------------------- /packages/at_client/test/verb_builder_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client/test/verb_builder_test.dart -------------------------------------------------------------------------------- /packages/at_client_mobile/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client_mobile/.gitignore -------------------------------------------------------------------------------- /packages/at_client_mobile/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client_mobile/CHANGELOG.md -------------------------------------------------------------------------------- /packages/at_client_mobile/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client_mobile/LICENSE -------------------------------------------------------------------------------- /packages/at_client_mobile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client_mobile/README.md -------------------------------------------------------------------------------- /packages/at_client_mobile/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client_mobile/analysis_options.yaml -------------------------------------------------------------------------------- /packages/at_client_mobile/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client_mobile/example/.gitignore -------------------------------------------------------------------------------- /packages/at_client_mobile/example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client_mobile/example/.metadata -------------------------------------------------------------------------------- /packages/at_client_mobile/example/EXAMPLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client_mobile/example/EXAMPLE.md -------------------------------------------------------------------------------- /packages/at_client_mobile/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client_mobile/example/README.md -------------------------------------------------------------------------------- /packages/at_client_mobile/example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client_mobile/example/android/.gitignore -------------------------------------------------------------------------------- /packages/at_client_mobile/example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client_mobile/example/ios/.gitignore -------------------------------------------------------------------------------- /packages/at_client_mobile/example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client_mobile/example/ios/Podfile -------------------------------------------------------------------------------- /packages/at_client_mobile/example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client_mobile/example/ios/Podfile.lock -------------------------------------------------------------------------------- /packages/at_client_mobile/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /packages/at_client_mobile/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client_mobile/example/lib/main.dart -------------------------------------------------------------------------------- /packages/at_client_mobile/example/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client_mobile/example/macos/.gitignore -------------------------------------------------------------------------------- /packages/at_client_mobile/example/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client_mobile/example/macos/Podfile -------------------------------------------------------------------------------- /packages/at_client_mobile/example/macos/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client_mobile/example/macos/Podfile.lock -------------------------------------------------------------------------------- /packages/at_client_mobile/example/pubspec.tmp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client_mobile/example/pubspec.tmp.yaml -------------------------------------------------------------------------------- /packages/at_client_mobile/lib/at_client_mobile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client_mobile/lib/at_client_mobile.dart -------------------------------------------------------------------------------- /packages/at_client_mobile/lib/src/at_client_auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client_mobile/lib/src/at_client_auth.dart -------------------------------------------------------------------------------- /packages/at_client_mobile/lib/src/atsign_key.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client_mobile/lib/src/atsign_key.dart -------------------------------------------------------------------------------- /packages/at_client_mobile/lib/src/auth_constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client_mobile/lib/src/auth_constants.dart -------------------------------------------------------------------------------- /packages/at_client_mobile/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_client_mobile/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_common_flutter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_common_flutter/.gitignore -------------------------------------------------------------------------------- /packages/at_common_flutter/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_common_flutter/.metadata -------------------------------------------------------------------------------- /packages/at_common_flutter/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_common_flutter/CHANGELOG.md -------------------------------------------------------------------------------- /packages/at_common_flutter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_common_flutter/LICENSE -------------------------------------------------------------------------------- /packages/at_common_flutter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_common_flutter/README.md -------------------------------------------------------------------------------- /packages/at_common_flutter/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_common_flutter/analysis_options.yaml -------------------------------------------------------------------------------- /packages/at_common_flutter/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_common_flutter/example/.gitignore -------------------------------------------------------------------------------- /packages/at_common_flutter/example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_common_flutter/example/.metadata -------------------------------------------------------------------------------- /packages/at_common_flutter/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_common_flutter/example/README.md -------------------------------------------------------------------------------- /packages/at_common_flutter/example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_common_flutter/example/android/.gitignore -------------------------------------------------------------------------------- /packages/at_common_flutter/example/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_common_flutter/example/example.md -------------------------------------------------------------------------------- /packages/at_common_flutter/example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_common_flutter/example/ios/.gitignore -------------------------------------------------------------------------------- /packages/at_common_flutter/example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_common_flutter/example/ios/Podfile -------------------------------------------------------------------------------- /packages/at_common_flutter/example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_common_flutter/example/ios/Podfile.lock -------------------------------------------------------------------------------- /packages/at_common_flutter/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /packages/at_common_flutter/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_common_flutter/example/lib/main.dart -------------------------------------------------------------------------------- /packages/at_common_flutter/example/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_common_flutter/example/macos/.gitignore -------------------------------------------------------------------------------- /packages/at_common_flutter/example/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_common_flutter/example/macos/Podfile -------------------------------------------------------------------------------- /packages/at_common_flutter/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_common_flutter/example/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_common_flutter/lib/at_common_flutter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_common_flutter/lib/at_common_flutter.dart -------------------------------------------------------------------------------- /packages/at_common_flutter/lib/utils/colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_common_flutter/lib/utils/colors.dart -------------------------------------------------------------------------------- /packages/at_common_flutter/lib/utils/text_styles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_common_flutter/lib/utils/text_styles.dart -------------------------------------------------------------------------------- /packages/at_common_flutter/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_common_flutter/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_commons/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/.gitignore -------------------------------------------------------------------------------- /packages/at_commons/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/CHANGELOG.md -------------------------------------------------------------------------------- /packages/at_commons/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/LICENSE -------------------------------------------------------------------------------- /packages/at_commons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/README.md -------------------------------------------------------------------------------- /packages/at_commons/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/analysis_options.yaml -------------------------------------------------------------------------------- /packages/at_commons/lib/at_builders.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/lib/at_builders.dart -------------------------------------------------------------------------------- /packages/at_commons/lib/at_commons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/lib/at_commons.dart -------------------------------------------------------------------------------- /packages/at_commons/lib/atsign.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/lib/atsign.dart -------------------------------------------------------------------------------- /packages/at_commons/lib/src/at_constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/lib/src/at_constants.dart -------------------------------------------------------------------------------- /packages/at_commons/lib/src/at_message.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/lib/src/at_message.dart -------------------------------------------------------------------------------- /packages/at_commons/lib/src/at_root_domain.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/lib/src/at_root_domain.dart -------------------------------------------------------------------------------- /packages/at_commons/lib/src/auth/auth_mode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/lib/src/auth/auth_mode.dart -------------------------------------------------------------------------------- /packages/at_commons/lib/src/buffer/at_buffer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/lib/src/buffer/at_buffer.dart -------------------------------------------------------------------------------- /packages/at_commons/lib/src/enroll/enrollment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/lib/src/enroll/enrollment.dart -------------------------------------------------------------------------------- /packages/at_commons/lib/src/keystore/at_key.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/lib/src/keystore/at_key.dart -------------------------------------------------------------------------------- /packages/at_commons/lib/src/keystore/at_key_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/lib/src/keystore/at_key_util.dart -------------------------------------------------------------------------------- /packages/at_commons/lib/src/keystore/key_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/lib/src/keystore/key_type.dart -------------------------------------------------------------------------------- /packages/at_commons/lib/src/shared_key_status.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/lib/src/shared_key_status.dart -------------------------------------------------------------------------------- /packages/at_commons/lib/src/utils/string_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/lib/src/utils/string_utils.dart -------------------------------------------------------------------------------- /packages/at_commons/lib/src/verb/enroll_params.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/lib/src/verb/enroll_params.dart -------------------------------------------------------------------------------- /packages/at_commons/lib/src/verb/enroll_params.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/lib/src/verb/enroll_params.g.dart -------------------------------------------------------------------------------- /packages/at_commons/lib/src/verb/operation_enum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/lib/src/verb/operation_enum.dart -------------------------------------------------------------------------------- /packages/at_commons/lib/src/verb/response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/lib/src/verb/response.dart -------------------------------------------------------------------------------- /packages/at_commons/lib/src/verb/syntax.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/lib/src/verb/syntax.dart -------------------------------------------------------------------------------- /packages/at_commons/lib/src/verb/update_json.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/lib/src/verb/update_json.dart -------------------------------------------------------------------------------- /packages/at_commons/lib/src/verb/verb_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/lib/src/verb/verb_builder.dart -------------------------------------------------------------------------------- /packages/at_commons/lib/src/verb/verb_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/lib/src/verb/verb_util.dart -------------------------------------------------------------------------------- /packages/at_commons/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_commons/test/at_exception_stack_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/test/at_exception_stack_test.dart -------------------------------------------------------------------------------- /packages/at_commons/test/at_key_regex_group_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/test/at_key_regex_group_test.dart -------------------------------------------------------------------------------- /packages/at_commons/test/at_key_regex_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/test/at_key_regex_test.dart -------------------------------------------------------------------------------- /packages/at_commons/test/at_key_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/test/at_key_test.dart -------------------------------------------------------------------------------- /packages/at_commons/test/at_key_type_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/test/at_key_type_test.dart -------------------------------------------------------------------------------- /packages/at_commons/test/at_root_domain_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/test/at_root_domain_test.dart -------------------------------------------------------------------------------- /packages/at_commons/test/atserver_events_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/test/atserver_events_test.dart -------------------------------------------------------------------------------- /packages/at_commons/test/delete_verb_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/test/delete_verb_test.dart -------------------------------------------------------------------------------- /packages/at_commons/test/enroll_params_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/test/enroll_params_test.dart -------------------------------------------------------------------------------- /packages/at_commons/test/from_verb_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/test/from_verb_test.dart -------------------------------------------------------------------------------- /packages/at_commons/test/keys_verb_builder_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/test/keys_verb_builder_test.dart -------------------------------------------------------------------------------- /packages/at_commons/test/llookup_verb_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/test/llookup_verb_test.dart -------------------------------------------------------------------------------- /packages/at_commons/test/otp_verb_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/test/otp_verb_test.dart -------------------------------------------------------------------------------- /packages/at_commons/test/pkam_verb_builder_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/test/pkam_verb_builder_test.dart -------------------------------------------------------------------------------- /packages/at_commons/test/public_key_hash_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/test/public_key_hash_test.dart -------------------------------------------------------------------------------- /packages/at_commons/test/scan_verb_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/test/scan_verb_test.dart -------------------------------------------------------------------------------- /packages/at_commons/test/string_buffer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/test/string_buffer_test.dart -------------------------------------------------------------------------------- /packages/at_commons/test/sync_verb_builder_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/test/sync_verb_builder_test.dart -------------------------------------------------------------------------------- /packages/at_commons/test/syntax_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/test/syntax_test.dart -------------------------------------------------------------------------------- /packages/at_commons/test/test_keys.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/test/test_keys.dart -------------------------------------------------------------------------------- /packages/at_commons/test/test_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/test/test_utils.dart -------------------------------------------------------------------------------- /packages/at_commons/test/verb_util_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_commons/test/verb_util_test.dart -------------------------------------------------------------------------------- /packages/at_contact/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contact/.gitignore -------------------------------------------------------------------------------- /packages/at_contact/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contact/CHANGELOG.md -------------------------------------------------------------------------------- /packages/at_contact/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contact/LICENSE -------------------------------------------------------------------------------- /packages/at_contact/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contact/LICENSE.md -------------------------------------------------------------------------------- /packages/at_contact/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contact/README.md -------------------------------------------------------------------------------- /packages/at_contact/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contact/analysis_options.yaml -------------------------------------------------------------------------------- /packages/at_contact/lib/at_contact.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contact/lib/at_contact.dart -------------------------------------------------------------------------------- /packages/at_contact/lib/src/at_contacts_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contact/lib/src/at_contacts_impl.dart -------------------------------------------------------------------------------- /packages/at_contact/lib/src/config/app_constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contact/lib/src/config/app_constants.dart -------------------------------------------------------------------------------- /packages/at_contact/lib/src/model/at_contact.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contact/lib/src/model/at_contact.dart -------------------------------------------------------------------------------- /packages/at_contact/lib/src/model/at_group.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contact/lib/src/model/at_group.dart -------------------------------------------------------------------------------- /packages/at_contact/lib/src/service/util_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contact/lib/src/service/util_service.dart -------------------------------------------------------------------------------- /packages/at_contact/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contact/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_contact/test/at_contact_tests.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contact/test/at_contact_tests.dart -------------------------------------------------------------------------------- /packages/at_contact/test/at_group_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contact/test/at_group_test.dart -------------------------------------------------------------------------------- /packages/at_contact/test/test_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contact/test/test_util.dart -------------------------------------------------------------------------------- /packages/at_contacts_flutter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_flutter/.gitignore -------------------------------------------------------------------------------- /packages/at_contacts_flutter/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_flutter/.metadata -------------------------------------------------------------------------------- /packages/at_contacts_flutter/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_flutter/CHANGELOG.md -------------------------------------------------------------------------------- /packages/at_contacts_flutter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_flutter/LICENSE -------------------------------------------------------------------------------- /packages/at_contacts_flutter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_flutter/README.md -------------------------------------------------------------------------------- /packages/at_contacts_flutter/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_flutter/analysis_options.yaml -------------------------------------------------------------------------------- /packages/at_contacts_flutter/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_flutter/android/.gitignore -------------------------------------------------------------------------------- /packages/at_contacts_flutter/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_flutter/android/build.gradle -------------------------------------------------------------------------------- /packages/at_contacts_flutter/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'at_contacts_flutter' 2 | -------------------------------------------------------------------------------- /packages/at_contacts_flutter/assets/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_flutter/assets/send.png -------------------------------------------------------------------------------- /packages/at_contacts_flutter/example/.env: -------------------------------------------------------------------------------- 1 | ROOT_DOMAIN=root.atsign.org -------------------------------------------------------------------------------- /packages/at_contacts_flutter/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_flutter/example/.gitignore -------------------------------------------------------------------------------- /packages/at_contacts_flutter/example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_flutter/example/.metadata -------------------------------------------------------------------------------- /packages/at_contacts_flutter/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_flutter/example/README.md -------------------------------------------------------------------------------- /packages/at_contacts_flutter/example/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_flutter/example/example.md -------------------------------------------------------------------------------- /packages/at_contacts_flutter/example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_flutter/example/ios/.gitignore -------------------------------------------------------------------------------- /packages/at_contacts_flutter/example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_flutter/example/ios/Podfile -------------------------------------------------------------------------------- /packages/at_contacts_flutter/example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_flutter/example/ios/Podfile.lock -------------------------------------------------------------------------------- /packages/at_contacts_flutter/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /packages/at_contacts_flutter/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_flutter/example/lib/main.dart -------------------------------------------------------------------------------- /packages/at_contacts_flutter/example/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_flutter/example/macos/.gitignore -------------------------------------------------------------------------------- /packages/at_contacts_flutter/example/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_flutter/example/macos/Podfile -------------------------------------------------------------------------------- /packages/at_contacts_flutter/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_flutter/example/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_contacts_flutter/example/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_flutter/example/web/favicon.png -------------------------------------------------------------------------------- /packages/at_contacts_flutter/example/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_flutter/example/web/index.html -------------------------------------------------------------------------------- /packages/at_contacts_flutter/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_flutter/ios/.gitignore -------------------------------------------------------------------------------- /packages/at_contacts_flutter/ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/at_contacts_flutter/lib/utils/colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_flutter/lib/utils/colors.dart -------------------------------------------------------------------------------- /packages/at_contacts_flutter/lib/utils/images.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_flutter/lib/utils/images.dart -------------------------------------------------------------------------------- /packages/at_contacts_flutter/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_flutter/linux/CMakeLists.txt -------------------------------------------------------------------------------- /packages/at_contacts_flutter/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_flutter/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_contacts_flutter/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_flutter/windows/.gitignore -------------------------------------------------------------------------------- /packages/at_contacts_flutter/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_flutter/windows/CMakeLists.txt -------------------------------------------------------------------------------- /packages/at_contacts_group_flutter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_group_flutter/.gitignore -------------------------------------------------------------------------------- /packages/at_contacts_group_flutter/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_group_flutter/.metadata -------------------------------------------------------------------------------- /packages/at_contacts_group_flutter/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_group_flutter/CHANGELOG.md -------------------------------------------------------------------------------- /packages/at_contacts_group_flutter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_group_flutter/LICENSE -------------------------------------------------------------------------------- /packages/at_contacts_group_flutter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_group_flutter/README.md -------------------------------------------------------------------------------- /packages/at_contacts_group_flutter/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_group_flutter/android/.gitignore -------------------------------------------------------------------------------- /packages/at_contacts_group_flutter/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'at_contacts_group_flutter' 2 | -------------------------------------------------------------------------------- /packages/at_contacts_group_flutter/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_group_flutter/example/.gitignore -------------------------------------------------------------------------------- /packages/at_contacts_group_flutter/example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_group_flutter/example/.metadata -------------------------------------------------------------------------------- /packages/at_contacts_group_flutter/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_group_flutter/example/README.md -------------------------------------------------------------------------------- /packages/at_contacts_group_flutter/example/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_group_flutter/example/example.md -------------------------------------------------------------------------------- /packages/at_contacts_group_flutter/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /packages/at_contacts_group_flutter/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_group_flutter/ios/.gitignore -------------------------------------------------------------------------------- /packages/at_contacts_group_flutter/ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/at_contacts_group_flutter/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_group_flutter/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_contacts_group_flutter/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_contacts_group_flutter/windows/.gitignore -------------------------------------------------------------------------------- /packages/at_events_flutter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_events_flutter/.gitignore -------------------------------------------------------------------------------- /packages/at_events_flutter/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_events_flutter/.metadata -------------------------------------------------------------------------------- /packages/at_events_flutter/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_events_flutter/CHANGELOG.md -------------------------------------------------------------------------------- /packages/at_events_flutter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_events_flutter/LICENSE -------------------------------------------------------------------------------- /packages/at_events_flutter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_events_flutter/README.md -------------------------------------------------------------------------------- /packages/at_events_flutter/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_events_flutter/analysis_options.yaml -------------------------------------------------------------------------------- /packages/at_events_flutter/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_events_flutter/android/.gitignore -------------------------------------------------------------------------------- /packages/at_events_flutter/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_events_flutter/android/build.gradle -------------------------------------------------------------------------------- /packages/at_events_flutter/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_events_flutter/android/gradle.properties -------------------------------------------------------------------------------- /packages/at_events_flutter/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'at_events_flutter' 2 | -------------------------------------------------------------------------------- /packages/at_events_flutter/example/.env: -------------------------------------------------------------------------------- 1 | ROOT_DOMAIN = 'root.atsign.org' -------------------------------------------------------------------------------- /packages/at_events_flutter/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_events_flutter/example/.gitignore -------------------------------------------------------------------------------- /packages/at_events_flutter/example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_events_flutter/example/.metadata -------------------------------------------------------------------------------- /packages/at_events_flutter/example/EXAMPLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_events_flutter/example/EXAMPLE.md -------------------------------------------------------------------------------- /packages/at_events_flutter/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_events_flutter/example/README.md -------------------------------------------------------------------------------- /packages/at_events_flutter/example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_events_flutter/example/android/.gitignore -------------------------------------------------------------------------------- /packages/at_events_flutter/example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_events_flutter/example/ios/.gitignore -------------------------------------------------------------------------------- /packages/at_events_flutter/example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_events_flutter/example/ios/Podfile -------------------------------------------------------------------------------- /packages/at_events_flutter/example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_events_flutter/example/ios/Podfile.lock -------------------------------------------------------------------------------- /packages/at_events_flutter/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /packages/at_events_flutter/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_events_flutter/example/lib/main.dart -------------------------------------------------------------------------------- /packages/at_events_flutter/example/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_events_flutter/example/macos/.gitignore -------------------------------------------------------------------------------- /packages/at_events_flutter/example/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_events_flutter/example/macos/Podfile -------------------------------------------------------------------------------- /packages/at_events_flutter/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_events_flutter/example/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_events_flutter/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_events_flutter/ios/.gitignore -------------------------------------------------------------------------------- /packages/at_events_flutter/ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/at_events_flutter/lib/at_events_flutter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_events_flutter/lib/at_events_flutter.dart -------------------------------------------------------------------------------- /packages/at_events_flutter/lib/utils/colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_events_flutter/lib/utils/colors.dart -------------------------------------------------------------------------------- /packages/at_events_flutter/lib/utils/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_events_flutter/lib/utils/constants.dart -------------------------------------------------------------------------------- /packages/at_events_flutter/lib/utils/text_styles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_events_flutter/lib/utils/text_styles.dart -------------------------------------------------------------------------------- /packages/at_events_flutter/lib/utils/texts.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_events_flutter/lib/utils/texts.dart -------------------------------------------------------------------------------- /packages/at_events_flutter/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_events_flutter/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_follows_flutter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_follows_flutter/.gitignore -------------------------------------------------------------------------------- /packages/at_follows_flutter/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_follows_flutter/CHANGELOG.md -------------------------------------------------------------------------------- /packages/at_follows_flutter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_follows_flutter/LICENSE -------------------------------------------------------------------------------- /packages/at_follows_flutter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_follows_flutter/README.md -------------------------------------------------------------------------------- /packages/at_follows_flutter/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_follows_flutter/android/.gitignore -------------------------------------------------------------------------------- /packages/at_follows_flutter/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_follows_flutter/android/build.gradle -------------------------------------------------------------------------------- /packages/at_follows_flutter/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_follows_flutter/android/gradle.properties -------------------------------------------------------------------------------- /packages/at_follows_flutter/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'at_follows_flutter' 2 | -------------------------------------------------------------------------------- /packages/at_follows_flutter/assets/images/colin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_follows_flutter/assets/images/colin.jpg -------------------------------------------------------------------------------- /packages/at_follows_flutter/assets/images/qrscan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_follows_flutter/assets/images/qrscan.png -------------------------------------------------------------------------------- /packages/at_follows_flutter/example/.env: -------------------------------------------------------------------------------- 1 | ROOT_DOMAIN = 'root.atsign.org' 2 | -------------------------------------------------------------------------------- /packages/at_follows_flutter/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_follows_flutter/example/.gitignore -------------------------------------------------------------------------------- /packages/at_follows_flutter/example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_follows_flutter/example/.metadata -------------------------------------------------------------------------------- /packages/at_follows_flutter/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_follows_flutter/example/README.md -------------------------------------------------------------------------------- /packages/at_follows_flutter/example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_follows_flutter/example/ios/.gitignore -------------------------------------------------------------------------------- /packages/at_follows_flutter/example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_follows_flutter/example/ios/Podfile -------------------------------------------------------------------------------- /packages/at_follows_flutter/example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_follows_flutter/example/ios/Podfile.lock -------------------------------------------------------------------------------- /packages/at_follows_flutter/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /packages/at_follows_flutter/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_follows_flutter/example/lib/main.dart -------------------------------------------------------------------------------- /packages/at_follows_flutter/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_follows_flutter/example/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_follows_flutter/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_follows_flutter/ios/.gitignore -------------------------------------------------------------------------------- /packages/at_follows_flutter/ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/at_follows_flutter/lib/domain/atsign.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_follows_flutter/lib/domain/atsign.dart -------------------------------------------------------------------------------- /packages/at_follows_flutter/lib/screens/qrscan.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_follows_flutter/lib/screens/qrscan.dart -------------------------------------------------------------------------------- /packages/at_follows_flutter/lib/utils/images.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_follows_flutter/lib/utils/images.dart -------------------------------------------------------------------------------- /packages/at_follows_flutter/lib/utils/json.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_follows_flutter/lib/utils/json.dart -------------------------------------------------------------------------------- /packages/at_follows_flutter/lib/utils/strings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_follows_flutter/lib/utils/strings.dart -------------------------------------------------------------------------------- /packages/at_follows_flutter/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_follows_flutter/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_follows_flutter/test/at_follows_flutter_test.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /packages/at_invitation_flutter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_invitation_flutter/.gitignore -------------------------------------------------------------------------------- /packages/at_invitation_flutter/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_invitation_flutter/.metadata -------------------------------------------------------------------------------- /packages/at_invitation_flutter/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_invitation_flutter/CHANGELOG.md -------------------------------------------------------------------------------- /packages/at_invitation_flutter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_invitation_flutter/LICENSE -------------------------------------------------------------------------------- /packages/at_invitation_flutter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_invitation_flutter/README.md -------------------------------------------------------------------------------- /packages/at_invitation_flutter/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_invitation_flutter/analysis_options.yaml -------------------------------------------------------------------------------- /packages/at_invitation_flutter/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_invitation_flutter/android/.gitignore -------------------------------------------------------------------------------- /packages/at_invitation_flutter/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_invitation_flutter/android/build.gradle -------------------------------------------------------------------------------- /packages/at_invitation_flutter/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'at_invitation_flutter' 2 | -------------------------------------------------------------------------------- /packages/at_invitation_flutter/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_invitation_flutter/example/.gitignore -------------------------------------------------------------------------------- /packages/at_invitation_flutter/example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_invitation_flutter/example/.metadata -------------------------------------------------------------------------------- /packages/at_invitation_flutter/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_invitation_flutter/example/README.md -------------------------------------------------------------------------------- /packages/at_invitation_flutter/example/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_invitation_flutter/example/example.md -------------------------------------------------------------------------------- /packages/at_invitation_flutter/example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_invitation_flutter/example/ios/.gitignore -------------------------------------------------------------------------------- /packages/at_invitation_flutter/example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_invitation_flutter/example/ios/Podfile -------------------------------------------------------------------------------- /packages/at_invitation_flutter/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /packages/at_invitation_flutter/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_invitation_flutter/example/lib/main.dart -------------------------------------------------------------------------------- /packages/at_invitation_flutter/example/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_invitation_flutter/example/macos/Podfile -------------------------------------------------------------------------------- /packages/at_invitation_flutter/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_invitation_flutter/example/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_invitation_flutter/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_invitation_flutter/ios/.gitignore -------------------------------------------------------------------------------- /packages/at_invitation_flutter/ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/at_invitation_flutter/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_invitation_flutter/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_location_flutter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_location_flutter/.gitignore -------------------------------------------------------------------------------- /packages/at_location_flutter/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_location_flutter/.metadata -------------------------------------------------------------------------------- /packages/at_location_flutter/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_location_flutter/CHANGELOG.md -------------------------------------------------------------------------------- /packages/at_location_flutter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_location_flutter/LICENSE -------------------------------------------------------------------------------- /packages/at_location_flutter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_location_flutter/README.md -------------------------------------------------------------------------------- /packages/at_location_flutter/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_location_flutter/analysis_options.yaml -------------------------------------------------------------------------------- /packages/at_location_flutter/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_location_flutter/android/.gitignore -------------------------------------------------------------------------------- /packages/at_location_flutter/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_location_flutter/android/build.gradle -------------------------------------------------------------------------------- /packages/at_location_flutter/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'at_location_flutter' 2 | -------------------------------------------------------------------------------- /packages/at_location_flutter/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_location_flutter/example/.gitignore -------------------------------------------------------------------------------- /packages/at_location_flutter/example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_location_flutter/example/.metadata -------------------------------------------------------------------------------- /packages/at_location_flutter/example/EXAMPLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_location_flutter/example/EXAMPLE.md -------------------------------------------------------------------------------- /packages/at_location_flutter/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_location_flutter/example/README.md -------------------------------------------------------------------------------- /packages/at_location_flutter/example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_location_flutter/example/ios/.gitignore -------------------------------------------------------------------------------- /packages/at_location_flutter/example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_location_flutter/example/ios/Podfile -------------------------------------------------------------------------------- /packages/at_location_flutter/example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_location_flutter/example/ios/Podfile.lock -------------------------------------------------------------------------------- /packages/at_location_flutter/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /packages/at_location_flutter/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_location_flutter/example/lib/main.dart -------------------------------------------------------------------------------- /packages/at_location_flutter/example/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_location_flutter/example/macos/.gitignore -------------------------------------------------------------------------------- /packages/at_location_flutter/example/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_location_flutter/example/macos/Podfile -------------------------------------------------------------------------------- /packages/at_location_flutter/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_location_flutter/example/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_location_flutter/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_location_flutter/ios/.gitignore -------------------------------------------------------------------------------- /packages/at_location_flutter/ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/at_location_flutter/lib/show_location.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_location_flutter/lib/show_location.dart -------------------------------------------------------------------------------- /packages/at_location_flutter/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_location_flutter/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_login_flutter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_login_flutter/.gitignore -------------------------------------------------------------------------------- /packages/at_login_flutter/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_login_flutter/.metadata -------------------------------------------------------------------------------- /packages/at_login_flutter/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_login_flutter/CHANGELOG.md -------------------------------------------------------------------------------- /packages/at_login_flutter/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /packages/at_login_flutter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_login_flutter/README.md -------------------------------------------------------------------------------- /packages/at_login_flutter/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_login_flutter/android/.gitignore -------------------------------------------------------------------------------- /packages/at_login_flutter/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_login_flutter/android/build.gradle -------------------------------------------------------------------------------- /packages/at_login_flutter/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_login_flutter/android/gradle.properties -------------------------------------------------------------------------------- /packages/at_login_flutter/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'at_login_flutter' 2 | -------------------------------------------------------------------------------- /packages/at_login_flutter/example/.env: -------------------------------------------------------------------------------- 1 | NAMESPACE=at_login -------------------------------------------------------------------------------- /packages/at_login_flutter/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_login_flutter/example/.gitignore -------------------------------------------------------------------------------- /packages/at_login_flutter/example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_login_flutter/example/.metadata -------------------------------------------------------------------------------- /packages/at_login_flutter/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_login_flutter/example/README.md -------------------------------------------------------------------------------- /packages/at_login_flutter/example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_login_flutter/example/android/.gitignore -------------------------------------------------------------------------------- /packages/at_login_flutter/example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_login_flutter/example/ios/.gitignore -------------------------------------------------------------------------------- /packages/at_login_flutter/example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_login_flutter/example/ios/Podfile -------------------------------------------------------------------------------- /packages/at_login_flutter/example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_login_flutter/example/ios/Podfile.lock -------------------------------------------------------------------------------- /packages/at_login_flutter/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /packages/at_login_flutter/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_login_flutter/example/lib/main.dart -------------------------------------------------------------------------------- /packages/at_login_flutter/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_login_flutter/example/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_login_flutter/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_login_flutter/ios/.gitignore -------------------------------------------------------------------------------- /packages/at_login_flutter/ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/at_login_flutter/lib/at_login_flutter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_login_flutter/lib/at_login_flutter.dart -------------------------------------------------------------------------------- /packages/at_login_flutter/lib/utils/strings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_login_flutter/lib/utils/strings.dart -------------------------------------------------------------------------------- /packages/at_login_flutter/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_login_flutter/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_lookup/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_lookup/CHANGELOG.md -------------------------------------------------------------------------------- /packages/at_lookup/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_lookup/LICENSE -------------------------------------------------------------------------------- /packages/at_lookup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_lookup/README.md -------------------------------------------------------------------------------- /packages/at_lookup/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_lookup/analysis_options.yaml -------------------------------------------------------------------------------- /packages/at_lookup/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_lookup/example/.gitignore -------------------------------------------------------------------------------- /packages/at_lookup/example/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.0.0 2 | 3 | - At_Lookup package example. 4 | -------------------------------------------------------------------------------- /packages/at_lookup/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_lookup/example/README.md -------------------------------------------------------------------------------- /packages/at_lookup/example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_lookup/example/analysis_options.yaml -------------------------------------------------------------------------------- /packages/at_lookup/example/bin/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_lookup/example/bin/example.dart -------------------------------------------------------------------------------- /packages/at_lookup/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_lookup/example/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_lookup/lib/at_lookup.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_lookup/lib/at_lookup.dart -------------------------------------------------------------------------------- /packages/at_lookup/lib/src/at_lookup.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_lookup/lib/src/at_lookup.dart -------------------------------------------------------------------------------- /packages/at_lookup/lib/src/at_lookup_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_lookup/lib/src/at_lookup_impl.dart -------------------------------------------------------------------------------- /packages/at_lookup/lib/src/monitor_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_lookup/lib/src/monitor_client.dart -------------------------------------------------------------------------------- /packages/at_lookup/lib/src/util/lookup_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_lookup/lib/src/util/lookup_util.dart -------------------------------------------------------------------------------- /packages/at_lookup/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_lookup/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_lookup/test/at_lookup_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_lookup/test/at_lookup_test.dart -------------------------------------------------------------------------------- /packages/at_lookup/test/at_lookup_test_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_lookup/test/at_lookup_test_utils.dart -------------------------------------------------------------------------------- /packages/at_lookup/test/mutex_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_lookup/test/mutex_test.dart -------------------------------------------------------------------------------- /packages/at_notify_flutter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_notify_flutter/.gitignore -------------------------------------------------------------------------------- /packages/at_notify_flutter/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_notify_flutter/.metadata -------------------------------------------------------------------------------- /packages/at_notify_flutter/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_notify_flutter/CHANGELOG.md -------------------------------------------------------------------------------- /packages/at_notify_flutter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_notify_flutter/LICENSE -------------------------------------------------------------------------------- /packages/at_notify_flutter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_notify_flutter/README.md -------------------------------------------------------------------------------- /packages/at_notify_flutter/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_notify_flutter/analysis_options.yaml -------------------------------------------------------------------------------- /packages/at_notify_flutter/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_notify_flutter/android/build.gradle -------------------------------------------------------------------------------- /packages/at_notify_flutter/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_notify_flutter/android/gradle.properties -------------------------------------------------------------------------------- /packages/at_notify_flutter/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'at_notify_flutter' 2 | -------------------------------------------------------------------------------- /packages/at_notify_flutter/example/.env: -------------------------------------------------------------------------------- 1 | 2 | ROOT_DOMAIN=root.atsign.org -------------------------------------------------------------------------------- /packages/at_notify_flutter/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_notify_flutter/example/.gitignore -------------------------------------------------------------------------------- /packages/at_notify_flutter/example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_notify_flutter/example/.metadata -------------------------------------------------------------------------------- /packages/at_notify_flutter/example/EXAMPLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_notify_flutter/example/EXAMPLE.md -------------------------------------------------------------------------------- /packages/at_notify_flutter/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_notify_flutter/example/README.md -------------------------------------------------------------------------------- /packages/at_notify_flutter/example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_notify_flutter/example/android/.gitignore -------------------------------------------------------------------------------- /packages/at_notify_flutter/example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_notify_flutter/example/ios/.gitignore -------------------------------------------------------------------------------- /packages/at_notify_flutter/example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_notify_flutter/example/ios/Podfile -------------------------------------------------------------------------------- /packages/at_notify_flutter/example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_notify_flutter/example/ios/Podfile.lock -------------------------------------------------------------------------------- /packages/at_notify_flutter/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /packages/at_notify_flutter/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_notify_flutter/example/lib/main.dart -------------------------------------------------------------------------------- /packages/at_notify_flutter/example/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_notify_flutter/example/macos/.gitignore -------------------------------------------------------------------------------- /packages/at_notify_flutter/example/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_notify_flutter/example/macos/Podfile -------------------------------------------------------------------------------- /packages/at_notify_flutter/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_notify_flutter/example/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_notify_flutter/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_notify_flutter/ios/.gitignore -------------------------------------------------------------------------------- /packages/at_notify_flutter/lib/at_notify_flutter.dart: -------------------------------------------------------------------------------- 1 | library at_notify_flutter; 2 | -------------------------------------------------------------------------------- /packages/at_notify_flutter/lib/utils/strings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_notify_flutter/lib/utils/strings.dart -------------------------------------------------------------------------------- /packages/at_notify_flutter/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_notify_flutter/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_notify_flutter/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_notify_flutter/web/favicon.png -------------------------------------------------------------------------------- /packages/at_notify_flutter/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_notify_flutter/web/icons/Icon-192.png -------------------------------------------------------------------------------- /packages/at_notify_flutter/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_notify_flutter/web/icons/Icon-512.png -------------------------------------------------------------------------------- /packages/at_notify_flutter/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_notify_flutter/web/index.html -------------------------------------------------------------------------------- /packages/at_notify_flutter/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_notify_flutter/web/manifest.json -------------------------------------------------------------------------------- /packages/at_onboarding_cli/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_onboarding_cli/.gitignore -------------------------------------------------------------------------------- /packages/at_onboarding_cli/.pubignore: -------------------------------------------------------------------------------- 1 | test/data/ 2 | 3 | -------------------------------------------------------------------------------- /packages/at_onboarding_cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_onboarding_cli/CHANGELOG.md -------------------------------------------------------------------------------- /packages/at_onboarding_cli/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_onboarding_cli/Dockerfile -------------------------------------------------------------------------------- /packages/at_onboarding_cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_onboarding_cli/LICENSE -------------------------------------------------------------------------------- /packages/at_onboarding_cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_onboarding_cli/README.md -------------------------------------------------------------------------------- /packages/at_onboarding_cli/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_onboarding_cli/analysis_options.yaml -------------------------------------------------------------------------------- /packages/at_onboarding_cli/bin/activate_cli.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_onboarding_cli/bin/activate_cli.dart -------------------------------------------------------------------------------- /packages/at_onboarding_cli/bin/register_cli.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_onboarding_cli/bin/register_cli.dart -------------------------------------------------------------------------------- /packages/at_onboarding_cli/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_onboarding_cli/example/README.md -------------------------------------------------------------------------------- /packages/at_onboarding_cli/example/get_cram_key.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_onboarding_cli/example/get_cram_key.dart -------------------------------------------------------------------------------- /packages/at_onboarding_cli/example/onboard.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_onboarding_cli/example/onboard.dart -------------------------------------------------------------------------------- /packages/at_onboarding_cli/lib/at_onboarding_cli.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_onboarding_cli/lib/at_onboarding_cli.dart -------------------------------------------------------------------------------- /packages/at_onboarding_cli/lib/src/util/api_call_status.dart: -------------------------------------------------------------------------------- 1 | enum ApiCallStatus { success, failure, retry } 2 | -------------------------------------------------------------------------------- /packages/at_onboarding_cli/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_onboarding_cli/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_onboarding_cli/test/auth_cli_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_onboarding_cli/test/auth_cli_test.dart -------------------------------------------------------------------------------- /packages/at_onboarding_flutter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_onboarding_flutter/.gitignore -------------------------------------------------------------------------------- /packages/at_onboarding_flutter/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_onboarding_flutter/.metadata -------------------------------------------------------------------------------- /packages/at_onboarding_flutter/.pubignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_onboarding_flutter/.pubignore -------------------------------------------------------------------------------- /packages/at_onboarding_flutter/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_onboarding_flutter/CHANGELOG.md -------------------------------------------------------------------------------- /packages/at_onboarding_flutter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_onboarding_flutter/LICENSE -------------------------------------------------------------------------------- /packages/at_onboarding_flutter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_onboarding_flutter/README.md -------------------------------------------------------------------------------- /packages/at_onboarding_flutter/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_onboarding_flutter/android/.gitignore -------------------------------------------------------------------------------- /packages/at_onboarding_flutter/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'at_onboarding_flutter' 2 | -------------------------------------------------------------------------------- /packages/at_onboarding_flutter/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_onboarding_flutter/example/.gitignore -------------------------------------------------------------------------------- /packages/at_onboarding_flutter/example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_onboarding_flutter/example/.metadata -------------------------------------------------------------------------------- /packages/at_onboarding_flutter/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_onboarding_flutter/example/README.md -------------------------------------------------------------------------------- /packages/at_onboarding_flutter/example/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_onboarding_flutter/example/example.md -------------------------------------------------------------------------------- /packages/at_onboarding_flutter/example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_onboarding_flutter/example/ios/Podfile -------------------------------------------------------------------------------- /packages/at_onboarding_flutter/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /packages/at_onboarding_flutter/example/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /packages/at_onboarding_flutter/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_onboarding_flutter/ios/.gitignore -------------------------------------------------------------------------------- /packages/at_onboarding_flutter/ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/at_onboarding_flutter/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_onboarding_flutter/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_onboarding_flutter/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_onboarding_flutter/windows/.gitignore -------------------------------------------------------------------------------- /packages/at_policy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_policy/.gitignore -------------------------------------------------------------------------------- /packages/at_policy/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_policy/CHANGELOG.md -------------------------------------------------------------------------------- /packages/at_policy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_policy/LICENSE -------------------------------------------------------------------------------- /packages/at_policy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_policy/README.md -------------------------------------------------------------------------------- /packages/at_policy/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_policy/analysis_options.yaml -------------------------------------------------------------------------------- /packages/at_policy/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_policy/example/.gitignore -------------------------------------------------------------------------------- /packages/at_policy/example/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.0.0 2 | 3 | - Initial version. 4 | -------------------------------------------------------------------------------- /packages/at_policy/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_policy/example/README.md -------------------------------------------------------------------------------- /packages/at_policy/example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_policy/example/analysis_options.yaml -------------------------------------------------------------------------------- /packages/at_policy/example/bin/client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_policy/example/bin/client.dart -------------------------------------------------------------------------------- /packages/at_policy/example/bin/common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_policy/example/bin/common.dart -------------------------------------------------------------------------------- /packages/at_policy/example/bin/policy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_policy/example/bin/policy.dart -------------------------------------------------------------------------------- /packages/at_policy/example/bin/service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_policy/example/bin/service.dart -------------------------------------------------------------------------------- /packages/at_policy/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_policy/example/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_policy/lib/at_policy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_policy/lib/at_policy.dart -------------------------------------------------------------------------------- /packages/at_policy/lib/src/policy/impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_policy/lib/src/policy/impl.dart -------------------------------------------------------------------------------- /packages/at_policy/lib/src/policy/interfaces.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_policy/lib/src/policy/interfaces.dart -------------------------------------------------------------------------------- /packages/at_policy/lib/src/policy/models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_policy/lib/src/policy/models.dart -------------------------------------------------------------------------------- /packages/at_policy/lib/src/policy/models.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_policy/lib/src/policy/models.g.dart -------------------------------------------------------------------------------- /packages/at_policy/lib/src/version.dart: -------------------------------------------------------------------------------- 1 | // Generated code. Do not modify. 2 | const packageVersion = '1.0.0'; 3 | -------------------------------------------------------------------------------- /packages/at_policy/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_policy/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_policy/test/at_policy_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_policy/test/at_policy_test.dart -------------------------------------------------------------------------------- /packages/at_server_status/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_server_status/.gitignore -------------------------------------------------------------------------------- /packages/at_server_status/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_server_status/CHANGELOG.md -------------------------------------------------------------------------------- /packages/at_server_status/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_server_status/LICENSE -------------------------------------------------------------------------------- /packages/at_server_status/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_server_status/README.md -------------------------------------------------------------------------------- /packages/at_server_status/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_server_status/analysis_options.yaml -------------------------------------------------------------------------------- /packages/at_server_status/lib/at_status_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_server_status/lib/at_status_impl.dart -------------------------------------------------------------------------------- /packages/at_server_status/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_server_status/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_sync_ui_flutter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_sync_ui_flutter/.gitignore -------------------------------------------------------------------------------- /packages/at_sync_ui_flutter/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_sync_ui_flutter/.metadata -------------------------------------------------------------------------------- /packages/at_sync_ui_flutter/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_sync_ui_flutter/CHANGELOG.md -------------------------------------------------------------------------------- /packages/at_sync_ui_flutter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_sync_ui_flutter/LICENSE -------------------------------------------------------------------------------- /packages/at_sync_ui_flutter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_sync_ui_flutter/README.md -------------------------------------------------------------------------------- /packages/at_sync_ui_flutter/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_sync_ui_flutter/analysis_options.yaml -------------------------------------------------------------------------------- /packages/at_sync_ui_flutter/example/.env: -------------------------------------------------------------------------------- 1 | ROOT_DOMAIN = 'root.atsign.org' 2 | -------------------------------------------------------------------------------- /packages/at_sync_ui_flutter/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_sync_ui_flutter/example/.gitignore -------------------------------------------------------------------------------- /packages/at_sync_ui_flutter/example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_sync_ui_flutter/example/.metadata -------------------------------------------------------------------------------- /packages/at_sync_ui_flutter/example/EXAMPLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_sync_ui_flutter/example/EXAMPLE.md -------------------------------------------------------------------------------- /packages/at_sync_ui_flutter/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_sync_ui_flutter/example/README.md -------------------------------------------------------------------------------- /packages/at_sync_ui_flutter/example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_sync_ui_flutter/example/ios/.gitignore -------------------------------------------------------------------------------- /packages/at_sync_ui_flutter/example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_sync_ui_flutter/example/ios/Podfile -------------------------------------------------------------------------------- /packages/at_sync_ui_flutter/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /packages/at_sync_ui_flutter/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_sync_ui_flutter/example/lib/main.dart -------------------------------------------------------------------------------- /packages/at_sync_ui_flutter/example/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_sync_ui_flutter/example/macos/Podfile -------------------------------------------------------------------------------- /packages/at_sync_ui_flutter/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_sync_ui_flutter/example/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_sync_ui_flutter/example/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_sync_ui_flutter/example/web/index.html -------------------------------------------------------------------------------- /packages/at_sync_ui_flutter/lib/at_sync_ui.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_sync_ui_flutter/lib/at_sync_ui.dart -------------------------------------------------------------------------------- /packages/at_sync_ui_flutter/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_sync_ui_flutter/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_theme_flutter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_theme_flutter/.gitignore -------------------------------------------------------------------------------- /packages/at_theme_flutter/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_theme_flutter/.metadata -------------------------------------------------------------------------------- /packages/at_theme_flutter/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_theme_flutter/CHANGELOG.md -------------------------------------------------------------------------------- /packages/at_theme_flutter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_theme_flutter/LICENSE -------------------------------------------------------------------------------- /packages/at_theme_flutter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_theme_flutter/README.md -------------------------------------------------------------------------------- /packages/at_theme_flutter/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_theme_flutter/analysis_options.yaml -------------------------------------------------------------------------------- /packages/at_theme_flutter/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_theme_flutter/example/.gitignore -------------------------------------------------------------------------------- /packages/at_theme_flutter/example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_theme_flutter/example/.metadata -------------------------------------------------------------------------------- /packages/at_theme_flutter/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_theme_flutter/example/README.md -------------------------------------------------------------------------------- /packages/at_theme_flutter/example/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_theme_flutter/example/example.md -------------------------------------------------------------------------------- /packages/at_theme_flutter/example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_theme_flutter/example/ios/.gitignore -------------------------------------------------------------------------------- /packages/at_theme_flutter/example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_theme_flutter/example/ios/Podfile -------------------------------------------------------------------------------- /packages/at_theme_flutter/example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_theme_flutter/example/ios/Podfile.lock -------------------------------------------------------------------------------- /packages/at_theme_flutter/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /packages/at_theme_flutter/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_theme_flutter/example/lib/main.dart -------------------------------------------------------------------------------- /packages/at_theme_flutter/example/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_theme_flutter/example/macos/.gitignore -------------------------------------------------------------------------------- /packages/at_theme_flutter/example/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_theme_flutter/example/macos/Podfile -------------------------------------------------------------------------------- /packages/at_theme_flutter/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_theme_flutter/example/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_theme_flutter/lib/src/app_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_theme_flutter/lib/src/app_theme.dart -------------------------------------------------------------------------------- /packages/at_theme_flutter/lib/utils/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_theme_flutter/lib/utils/constants.dart -------------------------------------------------------------------------------- /packages/at_theme_flutter/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_theme_flutter/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_utils/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_utils/.gitignore -------------------------------------------------------------------------------- /packages/at_utils/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_utils/CHANGELOG.md -------------------------------------------------------------------------------- /packages/at_utils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_utils/LICENSE -------------------------------------------------------------------------------- /packages/at_utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_utils/README.md -------------------------------------------------------------------------------- /packages/at_utils/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_utils/analysis_options.yaml -------------------------------------------------------------------------------- /packages/at_utils/example/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_utils/example/main.dart -------------------------------------------------------------------------------- /packages/at_utils/lib/at_logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_utils/lib/at_logger.dart -------------------------------------------------------------------------------- /packages/at_utils/lib/at_progress.dart: -------------------------------------------------------------------------------- 1 | export 'package:at_utils/src/logging/progress.dart'; 2 | -------------------------------------------------------------------------------- /packages/at_utils/lib/at_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_utils/lib/at_utils.dart -------------------------------------------------------------------------------- /packages/at_utils/lib/src/atmetadata_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_utils/lib/src/atmetadata_utils.dart -------------------------------------------------------------------------------- /packages/at_utils/lib/src/atsign_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_utils/lib/src/atsign_util.dart -------------------------------------------------------------------------------- /packages/at_utils/lib/src/config/app_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_utils/lib/src/config/app_config.dart -------------------------------------------------------------------------------- /packages/at_utils/lib/src/logging/handlers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_utils/lib/src/logging/handlers.dart -------------------------------------------------------------------------------- /packages/at_utils/lib/src/logging/progress.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_utils/lib/src/logging/progress.dart -------------------------------------------------------------------------------- /packages/at_utils/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_utils/pubspec.yaml -------------------------------------------------------------------------------- /packages/at_utils/test/at_metadata_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_utils/test/at_metadata_test.dart -------------------------------------------------------------------------------- /packages/at_utils/test/fix_at_sign_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_utils/test/fix_at_sign_test.dart -------------------------------------------------------------------------------- /packages/at_utils/test/logging_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/at_utils/test/logging_test.dart -------------------------------------------------------------------------------- /packages/base2e15/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/base2e15/.gitattributes -------------------------------------------------------------------------------- /packages/base2e15/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/base2e15/.gitignore -------------------------------------------------------------------------------- /packages/base2e15/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/base2e15/CHANGELOG.md -------------------------------------------------------------------------------- /packages/base2e15/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/base2e15/LICENSE -------------------------------------------------------------------------------- /packages/base2e15/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/base2e15/README.md -------------------------------------------------------------------------------- /packages/base2e15/all_chars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/base2e15/all_chars.txt -------------------------------------------------------------------------------- /packages/base2e15/lib/base2e15.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/base2e15/lib/base2e15.dart -------------------------------------------------------------------------------- /packages/base2e15/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/base2e15/pubspec.yaml -------------------------------------------------------------------------------- /packages/base2e15/test/all_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/base2e15/test/all_test.dart -------------------------------------------------------------------------------- /packages/dart_utf7/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/dart_utf7/.gitignore -------------------------------------------------------------------------------- /packages/dart_utf7/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/dart_utf7/CHANGELOG.md -------------------------------------------------------------------------------- /packages/dart_utf7/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/dart_utf7/LICENSE -------------------------------------------------------------------------------- /packages/dart_utf7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/dart_utf7/README.md -------------------------------------------------------------------------------- /packages/dart_utf7/example/utf7_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/dart_utf7/example/utf7_example.dart -------------------------------------------------------------------------------- /packages/dart_utf7/lib/src/dart_utf7.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/dart_utf7/lib/src/dart_utf7.dart -------------------------------------------------------------------------------- /packages/dart_utf7/lib/utf7.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/dart_utf7/lib/utf7.dart -------------------------------------------------------------------------------- /packages/dart_utf7/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/dart_utf7/pubspec.yaml -------------------------------------------------------------------------------- /packages/dart_utf7/test/utf7_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/packages/dart_utf7/test/utf7_test.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /tests/at_end2end_test/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.0.0 2 | 3 | - Initial version. 4 | -------------------------------------------------------------------------------- /tests/at_end2end_test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/tests/at_end2end_test/README.md -------------------------------------------------------------------------------- /tests/at_end2end_test/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/tests/at_end2end_test/analysis_options.yaml -------------------------------------------------------------------------------- /tests/at_end2end_test/config/config14.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/tests/at_end2end_test/config/config14.yaml -------------------------------------------------------------------------------- /tests/at_end2end_test/config/config23.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/tests/at_end2end_test/config/config23.yaml -------------------------------------------------------------------------------- /tests/at_end2end_test/lib/config/config_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/tests/at_end2end_test/lib/config/config_util.dart -------------------------------------------------------------------------------- /tests/at_end2end_test/lib/src/at_credentials.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/tests/at_end2end_test/lib/src/at_credentials.dart -------------------------------------------------------------------------------- /tests/at_end2end_test/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/tests/at_end2end_test/pubspec.yaml -------------------------------------------------------------------------------- /tests/at_end2end_test/test/bypasscache_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/tests/at_end2end_test/test/bypasscache_test.dart -------------------------------------------------------------------------------- /tests/at_end2end_test/test/collection_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/tests/at_end2end_test/test/collection_test.dart -------------------------------------------------------------------------------- /tests/at_end2end_test/test/delete_old_test_data.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/at_end2end_test/test/deletion_key_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/tests/at_end2end_test/test/deletion_key_test.dart -------------------------------------------------------------------------------- /tests/at_end2end_test/test/encryption_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/tests/at_end2end_test/test/encryption_test.dart -------------------------------------------------------------------------------- /tests/at_end2end_test/test/enrollment_setup.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/tests/at_end2end_test/test/enrollment_setup.dart -------------------------------------------------------------------------------- /tests/at_end2end_test/test/key_stream_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/tests/at_end2end_test/test/key_stream_test.dart -------------------------------------------------------------------------------- /tests/at_end2end_test/test/notify_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/tests/at_end2end_test/test/notify_test.dart -------------------------------------------------------------------------------- /tests/at_end2end_test/test/sharing_key_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/tests/at_end2end_test/test/sharing_key_test.dart -------------------------------------------------------------------------------- /tests/at_functional_test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/tests/at_functional_test/.gitignore -------------------------------------------------------------------------------- /tests/at_functional_test/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.0.0 2 | 3 | - Initial version. 4 | -------------------------------------------------------------------------------- /tests/at_functional_test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/tests/at_functional_test/README.md -------------------------------------------------------------------------------- /tests/at_functional_test/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/tests/at_functional_test/analysis_options.yaml -------------------------------------------------------------------------------- /tests/at_functional_test/config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/tests/at_functional_test/config/config.yaml -------------------------------------------------------------------------------- /tests/at_functional_test/lib/src/config_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/tests/at_functional_test/lib/src/config_util.dart -------------------------------------------------------------------------------- /tests/at_functional_test/lib/src/sync_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/tests/at_functional_test/lib/src/sync_service.dart -------------------------------------------------------------------------------- /tests/at_functional_test/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/tests/at_functional_test/pubspec.yaml -------------------------------------------------------------------------------- /tests/at_functional_test/runLocal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/tests/at_functional_test/runLocal.sh -------------------------------------------------------------------------------- /tests/at_functional_test/test/check_test_env.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/tests/at_functional_test/test/check_test_env.dart -------------------------------------------------------------------------------- /tests/at_functional_test/test/collection_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/tests/at_functional_test/test/collection_test.dart -------------------------------------------------------------------------------- /tests/at_functional_test/test/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/tests/at_functional_test/test/docker-compose.yaml -------------------------------------------------------------------------------- /tests/at_functional_test/test/encryption_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/tests/at_functional_test/test/encryption_test.dart -------------------------------------------------------------------------------- /tests/at_functional_test/test/enrollment_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/tests/at_functional_test/test/enrollment_test.dart -------------------------------------------------------------------------------- /tests/at_functional_test/test/testData/dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/tests/at_functional_test/test/testData/dev.png -------------------------------------------------------------------------------- /tests/at_functional_test/test/test_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/tests/at_functional_test/test/test_utils.dart -------------------------------------------------------------------------------- /tests/at_onboarding_cli_functional_tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/tests/at_onboarding_cli_functional_tests/README.md -------------------------------------------------------------------------------- /tests/at_onboarding_cli_functional_tests_proxy/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/cicd1x64/update_ce2e_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/tools/cicd1x64/update_ce2e_images.sh -------------------------------------------------------------------------------- /tools/cicd2x64/update_ce2e_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atsign-foundation/at_client_sdk/HEAD/tools/cicd2x64/update_ce2e_images.sh --------------------------------------------------------------------------------