From 642288cc99dca25d7ee38ee7aa08c957e6ddca24 Mon Sep 17 00:00:00 2001 From: David Djordjevic Date: Wed, 3 Apr 2024 17:38:40 +0200 Subject: [PATCH] Fix widget_toolkit comments and publishing issues --- .gitignore | 3 + packages/widget_toolkit/example/.gitignore | 64 +- .../widget_toolkit/example/ios/Podfile.lock | 2 +- .../.plugin_symlinks/url_launcher_linux | 1 - packages/widget_toolkit/lib/assets.dart | 1 - .../extensions/error_model_extensions.dart | 5 +- .../src/base/theme/widget_toolkit_theme.dart | 126 ++- .../theme/widget_toolkit_theme.tailor.dart | 197 ++-- .../blocs/item_picker_bloc.rxb.g.dart | 53 - .../blocs/search_picker_bloc.rxb.g.dart | 63 -- .../buttons/gradient_fill_button.dart | 2 +- .../buttons/small_button.dart | 2 +- .../message_panel_widget.dart | 28 +- .../widget_toolkit_otp/example/pubspec.lock | 517 ++++++++++ .../example/ios/Podfile.lock | 41 + .../widget_toolkit_pin/example/pubspec.lock | 956 ++++++++++++++++++ .../widget_toolkit_qr/example/pubspec.lock | 557 ++++++++++ 17 files changed, 2340 insertions(+), 278 deletions(-) delete mode 120000 packages/widget_toolkit/example/linux/flutter/ephemeral/.plugin_symlinks/url_launcher_linux delete mode 100644 packages/widget_toolkit/lib/src/lib_item_picker/blocs/item_picker_bloc.rxb.g.dart delete mode 100644 packages/widget_toolkit/lib/src/lib_search_picker/blocs/search_picker_bloc.rxb.g.dart create mode 100644 packages/widget_toolkit_otp/example/pubspec.lock create mode 100644 packages/widget_toolkit_pin/example/ios/Podfile.lock create mode 100644 packages/widget_toolkit_pin/example/pubspec.lock create mode 100644 packages/widget_toolkit_qr/example/pubspec.lock diff --git a/.gitignore b/.gitignore index 75f4d06d..c6291150 100644 --- a/.gitignore +++ b/.gitignore @@ -108,3 +108,6 @@ coverage/ !**/ios/**/default.perspectivev3 !/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages !/dev/ci/**/Gemfile.lock +!**/example/ios/Podfile.lock +!**/example/pubspec.lock +!pubspec.lock \ No newline at end of file diff --git a/packages/widget_toolkit/example/.gitignore b/packages/widget_toolkit/example/.gitignore index 24476c5d..7304dde9 100644 --- a/packages/widget_toolkit/example/.gitignore +++ b/packages/widget_toolkit/example/.gitignore @@ -8,7 +8,6 @@ .buildlog/ .history .svn/ -migrate_working_dir/ # IntelliJ related *.iml @@ -16,14 +15,8 @@ migrate_working_dir/ *.iws .idea/ -# The .vscode folder contains launch configuration and tasks you configure in -# VS Code which you may wish to be included in version control, so this line -# is commented out by default. -#.vscode/ - # Flutter/Dart/Pub related **/doc/api/ -**/ios/Flutter/.last_build_id .dart_tool/ .flutter-plugins .flutter-plugins-dependencies @@ -31,6 +24,11 @@ migrate_working_dir/ .pub-cache/ .pub/ /build/ +.fvm/ + +# Generated code +lib/generated_plugin_registrant.dart +lib/assets.dart # Symbolication related app.*.symbols @@ -38,7 +36,51 @@ app.*.symbols # Obfuscation related app.*.map.json -# Android Studio will place build artifacts here -/android/app/debug -/android/app/profile -/android/app/release +# Exceptions to above rules. +!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages + +# local env +env.json +lib/env_variable.g.dart + +# Android related +**/android/**/gradle-wrapper.jar +**/android/.gradle +**/android/captures/ +**/android/gradlew +**/android/gradlew.bat +**/android/local.properties +**/android/key.properties +**/android/**/GeneratedPluginRegistrant.java + +# iOS/XCode related +**/ios/**/*.mode1v3 +**/ios/**/*.mode2v3 +**/ios/**/*.moved-aside +**/ios/**/*.pbxuser +**/ios/**/*.perspectivev3 +**/ios/**/*sync/ +**/ios/**/.sconsign.dblite +**/ios/**/.tags* +**/ios/**/.vagrant/ +**/ios/**/DerivedData/ +**/ios/**/Icon? +**/ios/**/Pods/ +**/ios/**/.symlinks/ +**/ios/**/profile +**/ios/**/xcuserdata +**/ios/.generated/ +**/ios/Flutter/App.framework +**/ios/Flutter/Flutter.framework +**/ios/Flutter/Generated.xcconfig +**/ios/Flutter/app.flx +**/ios/Flutter/app.zip +**/ios/Flutter/flutter_assets/ +**/ios/ServiceDefinitions.json +**/ios/Runner/GeneratedPluginRegistrant.* + +# Exceptions to above rules. +!**/ios/**/default.mode1v3 +!**/ios/**/default.mode2v3 +!**/ios/**/default.pbxuser +!**/ios/**/default.perspectivev3 \ No newline at end of file diff --git a/packages/widget_toolkit/example/ios/Podfile.lock b/packages/widget_toolkit/example/ios/Podfile.lock index 9971d871..0266af60 100644 --- a/packages/widget_toolkit/example/ios/Podfile.lock +++ b/packages/widget_toolkit/example/ios/Podfile.lock @@ -15,7 +15,7 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7 - url_launcher_ios: bbd758c6e7f9fd7b5b1d4cde34d2b95fcce5e812 + url_launcher_ios: 6116280ddcfe98ab8820085d8d76ae7449447586 PODFILE CHECKSUM: c4c93c5f6502fe2754f48404d3594bf779584011 diff --git a/packages/widget_toolkit/example/linux/flutter/ephemeral/.plugin_symlinks/url_launcher_linux b/packages/widget_toolkit/example/linux/flutter/ephemeral/.plugin_symlinks/url_launcher_linux deleted file mode 120000 index 92981320..00000000 --- a/packages/widget_toolkit/example/linux/flutter/ephemeral/.plugin_symlinks/url_launcher_linux +++ /dev/null @@ -1 +0,0 @@ -/Users/pwndp/.pub-cache/hosted/pub.dev/url_launcher_linux-3.1.1/ \ No newline at end of file diff --git a/packages/widget_toolkit/lib/assets.dart b/packages/widget_toolkit/lib/assets.dart index 55ec9207..753e9b3a 100644 --- a/packages/widget_toolkit/lib/assets.dart +++ b/packages/widget_toolkit/lib/assets.dart @@ -1,4 +1,3 @@ class Fonts { static const String roboto = "Roboto"; } - diff --git a/packages/widget_toolkit/lib/src/base/extensions/error_model_extensions.dart b/packages/widget_toolkit/lib/src/base/extensions/error_model_extensions.dart index 13740295..11a32bb5 100644 --- a/packages/widget_toolkit/lib/src/base/extensions/error_model_extensions.dart +++ b/packages/widget_toolkit/lib/src/base/extensions/error_model_extensions.dart @@ -1,8 +1,9 @@ import '../models/errors/error_model.dart'; extension ExceptionToErrorModel on Exception { - ErrorModel asErrorModel() => - this is ErrorModel ? this as ErrorModel : UnknownErrorModel(exception: this); + ErrorModel asErrorModel() => this is ErrorModel + ? this as ErrorModel + : UnknownErrorModel(exception: this); } extension StreamExceptionToErrorModel on Stream { diff --git a/packages/widget_toolkit/lib/src/base/theme/widget_toolkit_theme.dart b/packages/widget_toolkit/lib/src/base/theme/widget_toolkit_theme.dart index d473190f..2b0e06d3 100644 --- a/packages/widget_toolkit/lib/src/base/theme/widget_toolkit_theme.dart +++ b/packages/widget_toolkit/lib/src/base/theme/widget_toolkit_theme.dart @@ -35,9 +35,9 @@ class WidgetToolkitTheme extends ThemeExtension required this.textButtonTextStyle, required this.errorCardIconColor, required this.errorCardBackgroundColor, - required this.lightRed, - required this.blueLight, - required this.greenLight, + required this.messagePanelBackgroundColorImportant, + required this.messagePanelBackgroundColorInformative, + required this.messagePanelBackgroundColorPositive, required this.errorCardTextColor, required this.bottomSheetBarrierColor, required this.messagePanelBackgroundColor, @@ -60,7 +60,7 @@ class WidgetToolkitTheme extends ThemeExtension required this.buttonTextColor, required this.shimmerBaseColor, required this.shimmerHighlightColor, - required this.white, + required this.messagePanelColorNeutral, required this.buttonBlueGradientEnd, required this.elevatedButtonBackgroundColor, required this.textColorWhite, @@ -70,15 +70,16 @@ class WidgetToolkitTheme extends ThemeExtension required this.activeButtonLanguageTextColor, required this.activeButtonTextColor, required this.disabledButtonTextColor, - required this.black, + required this.shimmerTextColor, required this.activeGradientColorStart, required this.activeGradientColorEnd, required this.boxShadowColor, - required this.red, - required this.orange, - required this.orangeLight, - required this.darkBlue, - required this.darkGreen, + required this.messagePanelBackgroundColorNeutral, + required this.messagePanelColorLessImportant, + required this.messagePanelBackgroundColorLessImportant, + required this.messagePanelColorImportant, + required this.messagePanelColorInformative, + required this.messagePanelColorPositive, required this.textButtonLoadingIndicatorColor, required this.buttonShadowColor, required this.buttonPressedColor, @@ -97,9 +98,8 @@ class WidgetToolkitTheme extends ThemeExtension required this.bottomSheetContentPadding, required this.messagePanelErrorEdgeInsets, required this.errorModalContentTitleInsets, - required this.smallEdgeInsets, - required this.mediumEdgeInsets, - required this.largeEdgeInsets, + required this.smallButtonPadding, + required this.gradientFillButtonDefaultPadding, required this.messagePanelEdgeInsets, required this.spacingXS1, required this.spacingXS, @@ -180,9 +180,12 @@ class WidgetToolkitTheme extends ThemeExtension errorCardIconColor = WidgetToolkitDesignSystem.light().colors.black87, errorCardBackgroundColor = WidgetToolkitDesignSystem.light().colors.lightRed, - lightRed = WidgetToolkitDesignSystem.light().colors.lightRed, - blueLight = WidgetToolkitDesignSystem.light().colors.blueLight, - greenLight = WidgetToolkitDesignSystem.light().colors.greenLight, + messagePanelBackgroundColorImportant = + WidgetToolkitDesignSystem.light().colors.lightRed, + messagePanelBackgroundColorInformative = + WidgetToolkitDesignSystem.light().colors.blueLight, + messagePanelBackgroundColorPositive = + WidgetToolkitDesignSystem.light().colors.greenLight, errorCardTextColor = WidgetToolkitDesignSystem.light().colors.black87, bottomSheetBarrierColor = WidgetToolkitDesignSystem.light().colors.bottomSheetBarrierColor, @@ -222,7 +225,8 @@ class WidgetToolkitTheme extends ThemeExtension WidgetToolkitDesignSystem.light().colors.shimmerBaseColor, shimmerHighlightColor = WidgetToolkitDesignSystem.light().colors.shimmerHighlightColor, - white = WidgetToolkitDesignSystem.light().colors.textColorWhite, + messagePanelColorNeutral = + WidgetToolkitDesignSystem.light().colors.textColorWhite, buttonBlueGradientEnd = WidgetToolkitDesignSystem.light().colors.buttonBlueGradientEnd, elevatedButtonBackgroundColor = @@ -240,17 +244,24 @@ class WidgetToolkitTheme extends ThemeExtension activeButtonTextColor = WidgetToolkitDesignSystem.light().colors.black87, disabledButtonTextColor = WidgetToolkitDesignSystem.light().colors.gray, - black = WidgetToolkitDesignSystem.light().colors.black, + shimmerTextColor = WidgetToolkitDesignSystem.light().colors.black, activeGradientColorStart = WidgetToolkitDesignSystem.light().colors.blue, activeGradientColorEnd = WidgetToolkitDesignSystem.light().colors.lightGray, boxShadowColor = WidgetToolkitDesignSystem.light().colors.red, - red = WidgetToolkitDesignSystem.light().colors.red, - orange = WidgetToolkitDesignSystem.light().colors.orange, - orangeLight = WidgetToolkitDesignSystem.light().colors.orangeLight, - darkBlue = WidgetToolkitDesignSystem.light().colors.darkBlue, - darkGreen = WidgetToolkitDesignSystem.light().colors.darkGreen, + messagePanelBackgroundColorNeutral = + WidgetToolkitDesignSystem.light().colors.red, + messagePanelColorLessImportant = + WidgetToolkitDesignSystem.light().colors.orange, + messagePanelBackgroundColorLessImportant = + WidgetToolkitDesignSystem.light().colors.orangeLight, + messagePanelColorInformative = + WidgetToolkitDesignSystem.light().colors.darkBlue, + messagePanelColorImportant = + WidgetToolkitDesignSystem.light().colors.red, + messagePanelColorPositive = + WidgetToolkitDesignSystem.light().colors.darkGreen, textButtonLoadingIndicatorColor = WidgetToolkitDesignSystem.light().colors.redDark, buttonShadowColor = WidgetToolkitDesignSystem.light().colors.white, @@ -280,9 +291,8 @@ class WidgetToolkitTheme extends ThemeExtension bottomSheetContentPadding = const EdgeInsets.fromLTRB(20, 20, 20, 0), messagePanelErrorEdgeInsets = const EdgeInsets.only(bottom: 20), errorModalContentTitleInsets = const EdgeInsets.only(bottom: 8), - smallEdgeInsets = const EdgeInsets.all(12), - mediumEdgeInsets = const EdgeInsets.all(16), - largeEdgeInsets = const EdgeInsets.all(22), + smallButtonPadding = const EdgeInsets.all(12), + gradientFillButtonDefaultPadding = const EdgeInsets.all(16), messagePanelEdgeInsets = const EdgeInsets.only(left: 20, top: 16, right: 16, bottom: 16), spacingXS1 = WidgetToolkitDesignSystem.light().spacings.xs1, @@ -365,9 +375,12 @@ class WidgetToolkitTheme extends ThemeExtension WidgetToolkitDesignSystem.dark().colors.mediumWhite, errorCardBackgroundColor = WidgetToolkitDesignSystem.dark().colors.redDark, - lightRed = WidgetToolkitDesignSystem.dark().colors.lightRed, - blueLight = WidgetToolkitDesignSystem.dark().colors.blueLight, - greenLight = WidgetToolkitDesignSystem.dark().colors.greenLight, + messagePanelBackgroundColorImportant = + WidgetToolkitDesignSystem.dark().colors.lightRed, + messagePanelBackgroundColorInformative = + WidgetToolkitDesignSystem.dark().colors.blueLight, + messagePanelBackgroundColorPositive = + WidgetToolkitDesignSystem.dark().colors.greenLight, errorCardTextColor = WidgetToolkitDesignSystem.dark().colors.white, bottomSheetBarrierColor = WidgetToolkitDesignSystem.dark().colors.bottomSheetBarrierColor, @@ -407,7 +420,8 @@ class WidgetToolkitTheme extends ThemeExtension WidgetToolkitDesignSystem.dark().colors.shimmerBaseColor, shimmerHighlightColor = WidgetToolkitDesignSystem.dark().colors.shimmerHighlightColor, - white = WidgetToolkitDesignSystem.dark().colors.textColorWhite, + messagePanelColorNeutral = + WidgetToolkitDesignSystem.dark().colors.textColorWhite, buttonBlueGradientEnd = WidgetToolkitDesignSystem.dark().colors.buttonBlueGradientEnd, elevatedButtonBackgroundColor = @@ -424,16 +438,23 @@ class WidgetToolkitTheme extends ThemeExtension .activeButtonLanguageTextColor, activeButtonTextColor = WidgetToolkitDesignSystem.dark().colors.white, disabledButtonTextColor = WidgetToolkitDesignSystem.dark().colors.gray, - black = WidgetToolkitDesignSystem.dark().colors.white, + shimmerTextColor = WidgetToolkitDesignSystem.dark().colors.white, activeGradientColorStart = WidgetToolkitDesignSystem.dark().colors.blue, activeGradientColorEnd = WidgetToolkitDesignSystem.dark().colors.lightGray, boxShadowColor = WidgetToolkitDesignSystem.dark().colors.red, - red = WidgetToolkitDesignSystem.dark().colors.red, - orange = WidgetToolkitDesignSystem.dark().colors.orange, - orangeLight = WidgetToolkitDesignSystem.dark().colors.orangeLight, - darkBlue = WidgetToolkitDesignSystem.dark().colors.darkBlue, - darkGreen = WidgetToolkitDesignSystem.dark().colors.darkGreen, + messagePanelBackgroundColorNeutral = + WidgetToolkitDesignSystem.dark().colors.red, + messagePanelColorLessImportant = + WidgetToolkitDesignSystem.dark().colors.orange, + messagePanelBackgroundColorLessImportant = + WidgetToolkitDesignSystem.dark().colors.orangeLight, + messagePanelColorInformative = + WidgetToolkitDesignSystem.dark().colors.darkBlue, + messagePanelColorImportant = + WidgetToolkitDesignSystem.dark().colors.red, + messagePanelColorPositive = + WidgetToolkitDesignSystem.dark().colors.darkGreen, textButtonLoadingIndicatorColor = WidgetToolkitDesignSystem.dark().colors.redDark, buttonShadowColor = WidgetToolkitDesignSystem.dark().colors.white, @@ -462,9 +483,8 @@ class WidgetToolkitTheme extends ThemeExtension bottomSheetContentPadding = const EdgeInsets.fromLTRB(20, 20, 20, 0), messagePanelErrorEdgeInsets = const EdgeInsets.only(bottom: 20), errorModalContentTitleInsets = const EdgeInsets.only(bottom: 8), - smallEdgeInsets = const EdgeInsets.all(12), - mediumEdgeInsets = const EdgeInsets.all(16), - largeEdgeInsets = const EdgeInsets.all(22), + smallButtonPadding = const EdgeInsets.all(12), + gradientFillButtonDefaultPadding = const EdgeInsets.all(16), messagePanelEdgeInsets = const EdgeInsets.only(left: 20, top: 16, right: 16, bottom: 16), spacingXS1 = WidgetToolkitDesignSystem.dark().spacings.xs1, @@ -544,11 +564,11 @@ class WidgetToolkitTheme extends ThemeExtension @override final Color errorCardBackgroundColor; @override - final Color lightRed; + final Color messagePanelBackgroundColorImportant; @override - final Color blueLight; + final Color messagePanelBackgroundColorInformative; @override - final Color greenLight; + final Color messagePanelBackgroundColorPositive; @override final Color errorCardTextColor; @override @@ -594,7 +614,7 @@ class WidgetToolkitTheme extends ThemeExtension @override final Color shimmerHighlightColor; @override - final Color white; + final Color messagePanelColorNeutral; @override final Color buttonBlueGradientEnd; @override @@ -614,7 +634,7 @@ class WidgetToolkitTheme extends ThemeExtension @override final Color disabledButtonTextColor; @override - final Color black; + final Color shimmerTextColor; @override final Color activeGradientColorStart; @override @@ -622,15 +642,17 @@ class WidgetToolkitTheme extends ThemeExtension @override final Color boxShadowColor; @override - final Color red; + final Color messagePanelBackgroundColorNeutral; @override - final Color orange; + final Color messagePanelColorLessImportant; @override - final Color orangeLight; + final Color messagePanelBackgroundColorLessImportant; @override - final Color darkBlue; + final Color messagePanelColorInformative; @override - final Color darkGreen; + final Color messagePanelColorImportant; + @override + final Color messagePanelColorPositive; @override final Color textButtonLoadingIndicatorColor; @override @@ -668,11 +690,9 @@ class WidgetToolkitTheme extends ThemeExtension @override final EdgeInsets errorModalContentTitleInsets; @override - final EdgeInsets smallEdgeInsets; - @override - final EdgeInsets mediumEdgeInsets; + final EdgeInsets smallButtonPadding; @override - final EdgeInsets largeEdgeInsets; + final EdgeInsets gradientFillButtonDefaultPadding; @override final EdgeInsets messagePanelEdgeInsets; @override diff --git a/packages/widget_toolkit/lib/src/base/theme/widget_toolkit_theme.tailor.dart b/packages/widget_toolkit/lib/src/base/theme/widget_toolkit_theme.tailor.dart index b1e8365d..fc48925d 100644 --- a/packages/widget_toolkit/lib/src/base/theme/widget_toolkit_theme.tailor.dart +++ b/packages/widget_toolkit/lib/src/base/theme/widget_toolkit_theme.tailor.dart @@ -34,9 +34,9 @@ mixin _$WidgetToolkitThemeTailorMixin on ThemeExtension { TextStyle get textButtonTextStyle; Color get errorCardIconColor; Color get errorCardBackgroundColor; - Color get lightRed; - Color get blueLight; - Color get greenLight; + Color get messagePanelBackgroundColorImportant; + Color get messagePanelBackgroundColorInformative; + Color get messagePanelBackgroundColorPositive; Color get errorCardTextColor; Color get bottomSheetBarrierColor; Color get messagePanelBackgroundColor; @@ -59,7 +59,7 @@ mixin _$WidgetToolkitThemeTailorMixin on ThemeExtension { Color get buttonTextColor; Color get shimmerBaseColor; Color get shimmerHighlightColor; - Color get white; + Color get messagePanelColorNeutral; Color get buttonBlueGradientEnd; Color get elevatedButtonBackgroundColor; Color get textColorWhite; @@ -69,15 +69,16 @@ mixin _$WidgetToolkitThemeTailorMixin on ThemeExtension { Color get activeButtonLanguageTextColor; Color get activeButtonTextColor; Color get disabledButtonTextColor; - Color get black; + Color get shimmerTextColor; Color get activeGradientColorStart; Color get activeGradientColorEnd; Color get boxShadowColor; - Color get red; - Color get orange; - Color get orangeLight; - Color get darkBlue; - Color get darkGreen; + Color get messagePanelBackgroundColorNeutral; + Color get messagePanelColorLessImportant; + Color get messagePanelBackgroundColorLessImportant; + Color get messagePanelColorInformative; + Color get messagePanelColorImportant; + Color get messagePanelColorPositive; Color get textButtonLoadingIndicatorColor; Color get buttonShadowColor; Color get buttonPressedColor; @@ -96,9 +97,8 @@ mixin _$WidgetToolkitThemeTailorMixin on ThemeExtension { EdgeInsets get bottomSheetContentPadding; EdgeInsets get messagePanelErrorEdgeInsets; EdgeInsets get errorModalContentTitleInsets; - EdgeInsets get smallEdgeInsets; - EdgeInsets get mediumEdgeInsets; - EdgeInsets get largeEdgeInsets; + EdgeInsets get smallButtonPadding; + EdgeInsets get gradientFillButtonDefaultPadding; EdgeInsets get messagePanelEdgeInsets; double get spacingXS1; double get spacingXS; @@ -149,9 +149,9 @@ mixin _$WidgetToolkitThemeTailorMixin on ThemeExtension { TextStyle? textButtonTextStyle, Color? errorCardIconColor, Color? errorCardBackgroundColor, - Color? lightRed, - Color? blueLight, - Color? greenLight, + Color? messagePanelBackgroundColorImportant, + Color? messagePanelBackgroundColorInformative, + Color? messagePanelBackgroundColorPositive, Color? errorCardTextColor, Color? bottomSheetBarrierColor, Color? messagePanelBackgroundColor, @@ -174,7 +174,7 @@ mixin _$WidgetToolkitThemeTailorMixin on ThemeExtension { Color? buttonTextColor, Color? shimmerBaseColor, Color? shimmerHighlightColor, - Color? white, + Color? messagePanelColorNeutral, Color? buttonBlueGradientEnd, Color? elevatedButtonBackgroundColor, Color? textColorWhite, @@ -184,15 +184,16 @@ mixin _$WidgetToolkitThemeTailorMixin on ThemeExtension { Color? activeButtonLanguageTextColor, Color? activeButtonTextColor, Color? disabledButtonTextColor, - Color? black, + Color? shimmerTextColor, Color? activeGradientColorStart, Color? activeGradientColorEnd, Color? boxShadowColor, - Color? red, - Color? orange, - Color? orangeLight, - Color? darkBlue, - Color? darkGreen, + Color? messagePanelBackgroundColorNeutral, + Color? messagePanelColorLessImportant, + Color? messagePanelBackgroundColorLessImportant, + Color? messagePanelColorInformative, + Color? messagePanelColorImportant, + Color? messagePanelColorPositive, Color? textButtonLoadingIndicatorColor, Color? buttonShadowColor, Color? buttonPressedColor, @@ -211,9 +212,8 @@ mixin _$WidgetToolkitThemeTailorMixin on ThemeExtension { EdgeInsets? bottomSheetContentPadding, EdgeInsets? messagePanelErrorEdgeInsets, EdgeInsets? errorModalContentTitleInsets, - EdgeInsets? smallEdgeInsets, - EdgeInsets? mediumEdgeInsets, - EdgeInsets? largeEdgeInsets, + EdgeInsets? smallButtonPadding, + EdgeInsets? gradientFillButtonDefaultPadding, EdgeInsets? messagePanelEdgeInsets, double? spacingXS1, double? spacingXS, @@ -281,9 +281,15 @@ mixin _$WidgetToolkitThemeTailorMixin on ThemeExtension { errorCardIconColor: errorCardIconColor ?? this.errorCardIconColor, errorCardBackgroundColor: errorCardBackgroundColor ?? this.errorCardBackgroundColor, - lightRed: lightRed ?? this.lightRed, - blueLight: blueLight ?? this.blueLight, - greenLight: greenLight ?? this.greenLight, + messagePanelBackgroundColorImportant: + messagePanelBackgroundColorImportant ?? + this.messagePanelBackgroundColorImportant, + messagePanelBackgroundColorInformative: + messagePanelBackgroundColorInformative ?? + this.messagePanelBackgroundColorInformative, + messagePanelBackgroundColorPositive: + messagePanelBackgroundColorPositive ?? + this.messagePanelBackgroundColorPositive, errorCardTextColor: errorCardTextColor ?? this.errorCardTextColor, bottomSheetBarrierColor: bottomSheetBarrierColor ?? this.bottomSheetBarrierColor, @@ -322,7 +328,8 @@ mixin _$WidgetToolkitThemeTailorMixin on ThemeExtension { shimmerBaseColor: shimmerBaseColor ?? this.shimmerBaseColor, shimmerHighlightColor: shimmerHighlightColor ?? this.shimmerHighlightColor, - white: white ?? this.white, + messagePanelColorNeutral: + messagePanelColorNeutral ?? this.messagePanelColorNeutral, buttonBlueGradientEnd: buttonBlueGradientEnd ?? this.buttonBlueGradientEnd, elevatedButtonBackgroundColor: @@ -339,17 +346,25 @@ mixin _$WidgetToolkitThemeTailorMixin on ThemeExtension { activeButtonTextColor ?? this.activeButtonTextColor, disabledButtonTextColor: disabledButtonTextColor ?? this.disabledButtonTextColor, - black: black ?? this.black, + shimmerTextColor: shimmerTextColor ?? this.shimmerTextColor, activeGradientColorStart: activeGradientColorStart ?? this.activeGradientColorStart, activeGradientColorEnd: activeGradientColorEnd ?? this.activeGradientColorEnd, boxShadowColor: boxShadowColor ?? this.boxShadowColor, - red: red ?? this.red, - orange: orange ?? this.orange, - orangeLight: orangeLight ?? this.orangeLight, - darkBlue: darkBlue ?? this.darkBlue, - darkGreen: darkGreen ?? this.darkGreen, + messagePanelBackgroundColorNeutral: messagePanelBackgroundColorNeutral ?? + this.messagePanelBackgroundColorNeutral, + messagePanelColorLessImportant: + messagePanelColorLessImportant ?? this.messagePanelColorLessImportant, + messagePanelBackgroundColorLessImportant: + messagePanelBackgroundColorLessImportant ?? + this.messagePanelBackgroundColorLessImportant, + messagePanelColorInformative: + messagePanelColorInformative ?? this.messagePanelColorInformative, + messagePanelColorImportant: + messagePanelColorImportant ?? this.messagePanelColorImportant, + messagePanelColorPositive: + messagePanelColorPositive ?? this.messagePanelColorPositive, textButtonLoadingIndicatorColor: textButtonLoadingIndicatorColor ?? this.textButtonLoadingIndicatorColor, buttonShadowColor: buttonShadowColor ?? this.buttonShadowColor, @@ -383,9 +398,9 @@ mixin _$WidgetToolkitThemeTailorMixin on ThemeExtension { messagePanelErrorEdgeInsets ?? this.messagePanelErrorEdgeInsets, errorModalContentTitleInsets: errorModalContentTitleInsets ?? this.errorModalContentTitleInsets, - smallEdgeInsets: smallEdgeInsets ?? this.smallEdgeInsets, - mediumEdgeInsets: mediumEdgeInsets ?? this.mediumEdgeInsets, - largeEdgeInsets: largeEdgeInsets ?? this.largeEdgeInsets, + smallButtonPadding: smallButtonPadding ?? this.smallButtonPadding, + gradientFillButtonDefaultPadding: gradientFillButtonDefaultPadding ?? + this.gradientFillButtonDefaultPadding, messagePanelEdgeInsets: messagePanelEdgeInsets ?? this.messagePanelEdgeInsets, spacingXS1: spacingXS1 ?? this.spacingXS1, @@ -473,9 +488,18 @@ mixin _$WidgetToolkitThemeTailorMixin on ThemeExtension { Color.lerp(errorCardIconColor, other.errorCardIconColor, t)!, errorCardBackgroundColor: Color.lerp( errorCardBackgroundColor, other.errorCardBackgroundColor, t)!, - lightRed: Color.lerp(lightRed, other.lightRed, t)!, - blueLight: Color.lerp(blueLight, other.blueLight, t)!, - greenLight: Color.lerp(greenLight, other.greenLight, t)!, + messagePanelBackgroundColorImportant: Color.lerp( + messagePanelBackgroundColorImportant, + other.messagePanelBackgroundColorImportant, + t)!, + messagePanelBackgroundColorInformative: Color.lerp( + messagePanelBackgroundColorInformative, + other.messagePanelBackgroundColorInformative, + t)!, + messagePanelBackgroundColorPositive: Color.lerp( + messagePanelBackgroundColorPositive, + other.messagePanelBackgroundColorPositive, + t)!, errorCardTextColor: Color.lerp(errorCardTextColor, other.errorCardTextColor, t)!, bottomSheetBarrierColor: Color.lerp( @@ -523,7 +547,8 @@ mixin _$WidgetToolkitThemeTailorMixin on ThemeExtension { Color.lerp(shimmerBaseColor, other.shimmerBaseColor, t)!, shimmerHighlightColor: Color.lerp(shimmerHighlightColor, other.shimmerHighlightColor, t)!, - white: Color.lerp(white, other.white, t)!, + messagePanelColorNeutral: Color.lerp( + messagePanelColorNeutral, other.messagePanelColorNeutral, t)!, buttonBlueGradientEnd: Color.lerp(buttonBlueGradientEnd, other.buttonBlueGradientEnd, t)!, elevatedButtonBackgroundColor: Color.lerp(elevatedButtonBackgroundColor, @@ -542,17 +567,29 @@ mixin _$WidgetToolkitThemeTailorMixin on ThemeExtension { Color.lerp(activeButtonTextColor, other.activeButtonTextColor, t)!, disabledButtonTextColor: Color.lerp( disabledButtonTextColor, other.disabledButtonTextColor, t)!, - black: Color.lerp(black, other.black, t)!, + shimmerTextColor: + Color.lerp(shimmerTextColor, other.shimmerTextColor, t)!, activeGradientColorStart: Color.lerp( activeGradientColorStart, other.activeGradientColorStart, t)!, activeGradientColorEnd: Color.lerp(activeGradientColorEnd, other.activeGradientColorEnd, t)!, boxShadowColor: Color.lerp(boxShadowColor, other.boxShadowColor, t)!, - red: Color.lerp(red, other.red, t)!, - orange: Color.lerp(orange, other.orange, t)!, - orangeLight: Color.lerp(orangeLight, other.orangeLight, t)!, - darkBlue: Color.lerp(darkBlue, other.darkBlue, t)!, - darkGreen: Color.lerp(darkGreen, other.darkGreen, t)!, + messagePanelBackgroundColorNeutral: Color.lerp( + messagePanelBackgroundColorNeutral, + other.messagePanelBackgroundColorNeutral, + t)!, + messagePanelColorLessImportant: Color.lerp(messagePanelColorLessImportant, + other.messagePanelColorLessImportant, t)!, + messagePanelBackgroundColorLessImportant: Color.lerp( + messagePanelBackgroundColorLessImportant, + other.messagePanelBackgroundColorLessImportant, + t)!, + messagePanelColorInformative: Color.lerp( + messagePanelColorInformative, other.messagePanelColorInformative, t)!, + messagePanelColorImportant: Color.lerp( + messagePanelColorImportant, other.messagePanelColorImportant, t)!, + messagePanelColorPositive: Color.lerp( + messagePanelColorPositive, other.messagePanelColorPositive, t)!, textButtonLoadingIndicatorColor: Color.lerp( textButtonLoadingIndicatorColor, other.textButtonLoadingIndicatorColor, @@ -597,9 +634,11 @@ mixin _$WidgetToolkitThemeTailorMixin on ThemeExtension { errorModalContentTitleInsets: t < 0.5 ? errorModalContentTitleInsets : other.errorModalContentTitleInsets, - smallEdgeInsets: t < 0.5 ? smallEdgeInsets : other.smallEdgeInsets, - mediumEdgeInsets: t < 0.5 ? mediumEdgeInsets : other.mediumEdgeInsets, - largeEdgeInsets: t < 0.5 ? largeEdgeInsets : other.largeEdgeInsets, + smallButtonPadding: + t < 0.5 ? smallButtonPadding : other.smallButtonPadding, + gradientFillButtonDefaultPadding: t < 0.5 + ? gradientFillButtonDefaultPadding + : other.gradientFillButtonDefaultPadding, messagePanelEdgeInsets: t < 0.5 ? messagePanelEdgeInsets : other.messagePanelEdgeInsets, spacingXS1: t < 0.5 ? spacingXS1 : other.spacingXS1, @@ -681,9 +720,9 @@ mixin _$WidgetToolkitThemeTailorMixin on ThemeExtension { const DeepCollectionEquality().equals(textButtonTextStyle, other.textButtonTextStyle) && const DeepCollectionEquality().equals(errorCardIconColor, other.errorCardIconColor) && const DeepCollectionEquality().equals(errorCardBackgroundColor, other.errorCardBackgroundColor) && - const DeepCollectionEquality().equals(lightRed, other.lightRed) && - const DeepCollectionEquality().equals(blueLight, other.blueLight) && - const DeepCollectionEquality().equals(greenLight, other.greenLight) && + const DeepCollectionEquality().equals(messagePanelBackgroundColorImportant, other.messagePanelBackgroundColorImportant) && + const DeepCollectionEquality().equals(messagePanelBackgroundColorInformative, other.messagePanelBackgroundColorInformative) && + const DeepCollectionEquality().equals(messagePanelBackgroundColorPositive, other.messagePanelBackgroundColorPositive) && const DeepCollectionEquality().equals(errorCardTextColor, other.errorCardTextColor) && const DeepCollectionEquality().equals(bottomSheetBarrierColor, other.bottomSheetBarrierColor) && const DeepCollectionEquality().equals(messagePanelBackgroundColor, other.messagePanelBackgroundColor) && @@ -706,7 +745,7 @@ mixin _$WidgetToolkitThemeTailorMixin on ThemeExtension { const DeepCollectionEquality().equals(buttonTextColor, other.buttonTextColor) && const DeepCollectionEquality().equals(shimmerBaseColor, other.shimmerBaseColor) && const DeepCollectionEquality().equals(shimmerHighlightColor, other.shimmerHighlightColor) && - const DeepCollectionEquality().equals(white, other.white) && + const DeepCollectionEquality().equals(messagePanelColorNeutral, other.messagePanelColorNeutral) && const DeepCollectionEquality().equals(buttonBlueGradientEnd, other.buttonBlueGradientEnd) && const DeepCollectionEquality().equals(elevatedButtonBackgroundColor, other.elevatedButtonBackgroundColor) && const DeepCollectionEquality().equals(textColorWhite, other.textColorWhite) && @@ -716,15 +755,16 @@ mixin _$WidgetToolkitThemeTailorMixin on ThemeExtension { const DeepCollectionEquality().equals(activeButtonLanguageTextColor, other.activeButtonLanguageTextColor) && const DeepCollectionEquality().equals(activeButtonTextColor, other.activeButtonTextColor) && const DeepCollectionEquality().equals(disabledButtonTextColor, other.disabledButtonTextColor) && - const DeepCollectionEquality().equals(black, other.black) && + const DeepCollectionEquality().equals(shimmerTextColor, other.shimmerTextColor) && const DeepCollectionEquality().equals(activeGradientColorStart, other.activeGradientColorStart) && const DeepCollectionEquality().equals(activeGradientColorEnd, other.activeGradientColorEnd) && const DeepCollectionEquality().equals(boxShadowColor, other.boxShadowColor) && - const DeepCollectionEquality().equals(red, other.red) && - const DeepCollectionEquality().equals(orange, other.orange) && - const DeepCollectionEquality().equals(orangeLight, other.orangeLight) && - const DeepCollectionEquality().equals(darkBlue, other.darkBlue) && - const DeepCollectionEquality().equals(darkGreen, other.darkGreen) && + const DeepCollectionEquality().equals(messagePanelBackgroundColorNeutral, other.messagePanelBackgroundColorNeutral) && + const DeepCollectionEquality().equals(messagePanelColorLessImportant, other.messagePanelColorLessImportant) && + const DeepCollectionEquality().equals(messagePanelBackgroundColorLessImportant, other.messagePanelBackgroundColorLessImportant) && + const DeepCollectionEquality().equals(messagePanelColorInformative, other.messagePanelColorInformative) && + const DeepCollectionEquality().equals(messagePanelColorImportant, other.messagePanelColorImportant) && + const DeepCollectionEquality().equals(messagePanelColorPositive, other.messagePanelColorPositive) && const DeepCollectionEquality().equals(textButtonLoadingIndicatorColor, other.textButtonLoadingIndicatorColor) && const DeepCollectionEquality().equals(buttonShadowColor, other.buttonShadowColor) && const DeepCollectionEquality().equals(buttonPressedColor, other.buttonPressedColor) && @@ -743,9 +783,8 @@ mixin _$WidgetToolkitThemeTailorMixin on ThemeExtension { const DeepCollectionEquality().equals(bottomSheetContentPadding, other.bottomSheetContentPadding) && const DeepCollectionEquality().equals(messagePanelErrorEdgeInsets, other.messagePanelErrorEdgeInsets) && const DeepCollectionEquality().equals(errorModalContentTitleInsets, other.errorModalContentTitleInsets) && - const DeepCollectionEquality().equals(smallEdgeInsets, other.smallEdgeInsets) && - const DeepCollectionEquality().equals(mediumEdgeInsets, other.mediumEdgeInsets) && - const DeepCollectionEquality().equals(largeEdgeInsets, other.largeEdgeInsets) && + const DeepCollectionEquality().equals(smallButtonPadding, other.smallButtonPadding) && + const DeepCollectionEquality().equals(gradientFillButtonDefaultPadding, other.gradientFillButtonDefaultPadding) && const DeepCollectionEquality().equals(messagePanelEdgeInsets, other.messagePanelEdgeInsets) && const DeepCollectionEquality().equals(spacingXS1, other.spacingXS1) && const DeepCollectionEquality().equals(spacingXS, other.spacingXS) && @@ -799,9 +838,10 @@ mixin _$WidgetToolkitThemeTailorMixin on ThemeExtension { const DeepCollectionEquality().hash(textButtonTextStyle), const DeepCollectionEquality().hash(errorCardIconColor), const DeepCollectionEquality().hash(errorCardBackgroundColor), - const DeepCollectionEquality().hash(lightRed), - const DeepCollectionEquality().hash(blueLight), - const DeepCollectionEquality().hash(greenLight), + const DeepCollectionEquality().hash(messagePanelBackgroundColorImportant), + const DeepCollectionEquality() + .hash(messagePanelBackgroundColorInformative), + const DeepCollectionEquality().hash(messagePanelBackgroundColorPositive), const DeepCollectionEquality().hash(errorCardTextColor), const DeepCollectionEquality().hash(bottomSheetBarrierColor), const DeepCollectionEquality().hash(messagePanelBackgroundColor), @@ -824,7 +864,7 @@ mixin _$WidgetToolkitThemeTailorMixin on ThemeExtension { const DeepCollectionEquality().hash(buttonTextColor), const DeepCollectionEquality().hash(shimmerBaseColor), const DeepCollectionEquality().hash(shimmerHighlightColor), - const DeepCollectionEquality().hash(white), + const DeepCollectionEquality().hash(messagePanelColorNeutral), const DeepCollectionEquality().hash(buttonBlueGradientEnd), const DeepCollectionEquality().hash(elevatedButtonBackgroundColor), const DeepCollectionEquality().hash(textColorWhite), @@ -834,15 +874,17 @@ mixin _$WidgetToolkitThemeTailorMixin on ThemeExtension { const DeepCollectionEquality().hash(activeButtonLanguageTextColor), const DeepCollectionEquality().hash(activeButtonTextColor), const DeepCollectionEquality().hash(disabledButtonTextColor), - const DeepCollectionEquality().hash(black), + const DeepCollectionEquality().hash(shimmerTextColor), const DeepCollectionEquality().hash(activeGradientColorStart), const DeepCollectionEquality().hash(activeGradientColorEnd), const DeepCollectionEquality().hash(boxShadowColor), - const DeepCollectionEquality().hash(red), - const DeepCollectionEquality().hash(orange), - const DeepCollectionEquality().hash(orangeLight), - const DeepCollectionEquality().hash(darkBlue), - const DeepCollectionEquality().hash(darkGreen), + const DeepCollectionEquality().hash(messagePanelBackgroundColorNeutral), + const DeepCollectionEquality().hash(messagePanelColorLessImportant), + const DeepCollectionEquality() + .hash(messagePanelBackgroundColorLessImportant), + const DeepCollectionEquality().hash(messagePanelColorInformative), + const DeepCollectionEquality().hash(messagePanelColorImportant), + const DeepCollectionEquality().hash(messagePanelColorPositive), const DeepCollectionEquality().hash(textButtonLoadingIndicatorColor), const DeepCollectionEquality().hash(buttonShadowColor), const DeepCollectionEquality().hash(buttonPressedColor), @@ -861,9 +903,8 @@ mixin _$WidgetToolkitThemeTailorMixin on ThemeExtension { const DeepCollectionEquality().hash(bottomSheetContentPadding), const DeepCollectionEquality().hash(messagePanelErrorEdgeInsets), const DeepCollectionEquality().hash(errorModalContentTitleInsets), - const DeepCollectionEquality().hash(smallEdgeInsets), - const DeepCollectionEquality().hash(mediumEdgeInsets), - const DeepCollectionEquality().hash(largeEdgeInsets), + const DeepCollectionEquality().hash(smallButtonPadding), + const DeepCollectionEquality().hash(gradientFillButtonDefaultPadding), const DeepCollectionEquality().hash(messagePanelEdgeInsets), const DeepCollectionEquality().hash(spacingXS1), const DeepCollectionEquality().hash(spacingXS), diff --git a/packages/widget_toolkit/lib/src/lib_item_picker/blocs/item_picker_bloc.rxb.g.dart b/packages/widget_toolkit/lib/src/lib_item_picker/blocs/item_picker_bloc.rxb.g.dart deleted file mode 100644 index 966c677e..00000000 --- a/packages/widget_toolkit/lib/src/lib_item_picker/blocs/item_picker_bloc.rxb.g.dart +++ /dev/null @@ -1,53 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -// ************************************************************************** -// Generator: RxBlocGeneratorForAnnotation -// ************************************************************************** - -import 'package:rx_bloc/rx_bloc.dart'; -import 'package:rxdart/rxdart.dart'; - -import 'item_picker_bloc.dart'; - -//part of 'item_picker_bloc.dart'; - -/// Used as a contractor for the bloc, events and states classes -/// @nodoc -abstract class ItemPickerBlocType extends RxBlocTypeBase { - ItemPickerBlocEvents get events; - ItemPickerBlocStates get states; -} - -/// [$ItemPickerBloc] extended by the [ItemPickerBloc] -/// @nodoc -abstract class $ItemPickerBloc extends RxBlocBase - implements ItemPickerBlocEvents, ItemPickerBlocStates, ItemPickerBlocType { - final _compositeSubscription = CompositeSubscription(); - - /// Тhe [Subject] where events sink to by calling [loadItems] - final _$loadItemsEvent = PublishSubject(); - - /// The state of [items] implemented in [_mapToItemsState] - late final Stream>> _itemsState = _mapToItemsState(); - - @override - void loadItems() => _$loadItemsEvent.add(null); - - @override - Stream>> get items => _itemsState; - - Stream>> _mapToItemsState(); - - @override - ItemPickerBlocEvents get events => this; - - @override - ItemPickerBlocStates get states => this; - - @override - void dispose() { - _$loadItemsEvent.close(); - _compositeSubscription.dispose(); - super.dispose(); - } -} diff --git a/packages/widget_toolkit/lib/src/lib_search_picker/blocs/search_picker_bloc.rxb.g.dart b/packages/widget_toolkit/lib/src/lib_search_picker/blocs/search_picker_bloc.rxb.g.dart deleted file mode 100644 index b16e6bea..00000000 --- a/packages/widget_toolkit/lib/src/lib_search_picker/blocs/search_picker_bloc.rxb.g.dart +++ /dev/null @@ -1,63 +0,0 @@ -// GENERATED CODE - DO NOT MODIFY BY HAND - -// ************************************************************************** -// Generator: RxBlocGeneratorForAnnotation -// ************************************************************************** - -import 'package:rx_bloc/rx_bloc.dart'; -import 'package:rxdart/rxdart.dart'; - -import 'search_picker_bloc.dart'; - -//part of 'search_picker_bloc.dart'; - -/// Used as a contractor for the bloc, events and states classes -/// @nodoc -abstract class SearchPickerBlocType extends RxBlocTypeBase { - SearchPickerBlocEvents get events; - SearchPickerBlocStates get states; -} - -/// [$SearchPickerBloc] extended by the [SearchPickerBloc] -/// @nodoc -abstract class $SearchPickerBloc extends RxBlocBase - implements - SearchPickerBlocEvents, - SearchPickerBlocStates, - SearchPickerBlocType { - final _compositeSubscription = CompositeSubscription(); - - /// Тhe [Subject] where events sink to by calling [loadItems] - final _$loadItemsEvent = PublishSubject(); - - /// Тhe [Subject] where events sink to by calling [filterByQuery] - final _$filterByQueryEvent = BehaviorSubject.seeded(null); - - /// The state of [itemsList] implemented in [_mapToItemsListState] - late final Stream>> _itemsListState = _mapToItemsListState(); - - @override - void loadItems() => _$loadItemsEvent.add(null); - - @override - void filterByQuery({String? query}) => _$filterByQueryEvent.add(query); - - @override - Stream>> get itemsList => _itemsListState; - - Stream>> _mapToItemsListState(); - - @override - SearchPickerBlocEvents get events => this; - - @override - SearchPickerBlocStates get states => this; - - @override - void dispose() { - _$loadItemsEvent.close(); - _$filterByQueryEvent.close(); - _compositeSubscription.dispose(); - super.dispose(); - } -} diff --git a/packages/widget_toolkit/lib/src/lib_ui_components/buttons/gradient_fill_button.dart b/packages/widget_toolkit/lib/src/lib_ui_components/buttons/gradient_fill_button.dart index 542957dd..3e8607e8 100644 --- a/packages/widget_toolkit/lib/src/lib_ui_components/buttons/gradient_fill_button.dart +++ b/packages/widget_toolkit/lib/src/lib_ui_components/buttons/gradient_fill_button.dart @@ -91,7 +91,7 @@ class GradientFillButton extends StatelessWidget { child: Container( padding: padding != null ? EdgeInsets.zero - : context.widgetToolkitTheme.mediumEdgeInsets, + : context.widgetToolkitTheme.gradientFillButtonDefaultPadding, color: state == ButtonStateModel.pressed ? getPressedInnerBackgroundColor(context) : Colors.transparent, diff --git a/packages/widget_toolkit/lib/src/lib_ui_components/buttons/small_button.dart b/packages/widget_toolkit/lib/src/lib_ui_components/buttons/small_button.dart index 44b8bc8e..12823d68 100644 --- a/packages/widget_toolkit/lib/src/lib_ui_components/buttons/small_button.dart +++ b/packages/widget_toolkit/lib/src/lib_ui_components/buttons/small_button.dart @@ -62,7 +62,7 @@ class SmallButton extends StatelessWidget { ]); final text = Ink( - padding: context.widgetToolkitTheme.smallEdgeInsets, + padding: context.widgetToolkitTheme.smallButtonPadding, decoration: BoxDecoration( color: state != ButtonStateModel.disabled ? context.widgetToolkitTheme.smallButtonBackgroundColor diff --git a/packages/widget_toolkit/lib/src/lib_ui_components/message_panel_widget.dart b/packages/widget_toolkit/lib/src/lib_ui_components/message_panel_widget.dart index 343008a6..5402bb3c 100644 --- a/packages/widget_toolkit/lib/src/lib_ui_components/message_panel_widget.dart +++ b/packages/widget_toolkit/lib/src/lib_ui_components/message_panel_widget.dart @@ -108,7 +108,7 @@ class MessagePanelWidget extends StatelessWidget { ShimmerText( isLoading ? null : body!.toUpperCase(), style: context.widgetToolkitTheme.captionBold.copyWith( - color: context.widgetToolkitTheme.black, + color: context.widgetToolkitTheme.shimmerTextColor, height: 2.2, ), baseColor: context.widgetToolkitTheme.shimmerBaseColor, @@ -172,36 +172,38 @@ extension _MessagePanelStateX on MessagePanelState { Color getBackgroundColor(BuildContext context) { switch (this) { case MessagePanelState.important: - return context.widgetToolkitTheme.lightRed; + return context.widgetToolkitTheme.messagePanelBackgroundColorImportant; case MessagePanelState.informative: - return context.widgetToolkitTheme.blueLight; + return context + .widgetToolkitTheme.messagePanelBackgroundColorInformative; case MessagePanelState.positive: case MessagePanelState.positiveCheck: - return context.widgetToolkitTheme.greenLight; + return context.widgetToolkitTheme.messagePanelBackgroundColorPositive; case MessagePanelState.neutral: - return context.widgetToolkitTheme.red; + return context.widgetToolkitTheme.messagePanelBackgroundColorNeutral; case MessagePanelState.lessImportant: - return context.widgetToolkitTheme.orangeLight; + return context + .widgetToolkitTheme.messagePanelBackgroundColorLessImportant; case MessagePanelState.custom: - return context.widgetToolkitTheme.lightRed; + return context.widgetToolkitTheme.messagePanelBackgroundColorImportant; } } Color getColor(BuildContext context) { switch (this) { case MessagePanelState.important: - return context.widgetToolkitTheme.red; + return context.widgetToolkitTheme.messagePanelColorImportant; case MessagePanelState.informative: - return context.widgetToolkitTheme.darkBlue; + return context.widgetToolkitTheme.messagePanelColorInformative; case MessagePanelState.positive: case MessagePanelState.positiveCheck: - return context.widgetToolkitTheme.darkGreen; + return context.widgetToolkitTheme.messagePanelColorPositive; case MessagePanelState.neutral: - return context.widgetToolkitTheme.white; + return context.widgetToolkitTheme.messagePanelColorNeutral; case MessagePanelState.lessImportant: - return context.widgetToolkitTheme.orange; + return context.widgetToolkitTheme.messagePanelColorLessImportant; case MessagePanelState.custom: - return context.widgetToolkitTheme.red; + return context.widgetToolkitTheme.messagePanelBackgroundColorNeutral; } } } diff --git a/packages/widget_toolkit_otp/example/pubspec.lock b/packages/widget_toolkit_otp/example/pubspec.lock new file mode 100644 index 00000000..ed49cc4c --- /dev/null +++ b/packages/widget_toolkit_otp/example/pubspec.lock @@ -0,0 +1,517 @@ +# Generated by pub +# See https://dart.dev/tools/pub/glossary#lockfile +packages: + args: + dependency: transitive + description: + name: args + sha256: eef6c46b622e0494a36c5a12d10d77fb4e855501a91c1b9ef9339326e58f0596 + url: "https://pub.dev" + source: hosted + version: "2.4.2" + async: + dependency: transitive + description: + name: async + sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c" + url: "https://pub.dev" + source: hosted + version: "2.11.0" + boolean_selector: + dependency: transitive + description: + name: boolean_selector + sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + characters: + dependency: transitive + description: + name: characters + sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605" + url: "https://pub.dev" + source: hosted + version: "1.3.0" + clock: + dependency: transitive + description: + name: clock + sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf + url: "https://pub.dev" + source: hosted + version: "1.1.1" + collection: + dependency: transitive + description: + name: collection + sha256: ee67cb0715911d28db6bf4af1026078bd6f0128b07a5f66fb2ed94ec6783c09a + url: "https://pub.dev" + source: hosted + version: "1.18.0" + copy_with_extension: + dependency: transitive + description: + name: copy_with_extension + sha256: fbcf890b0c34aedf0894f91a11a579994b61b4e04080204656b582708b5b1125 + url: "https://pub.dev" + source: hosted + version: "5.0.4" + cupertino_icons: + dependency: "direct main" + description: + name: cupertino_icons + sha256: d57953e10f9f8327ce64a508a355f0b1ec902193f66288e8cb5070e7c47eeb2d + url: "https://pub.dev" + source: hosted + version: "1.0.6" + equatable: + dependency: transitive + description: + name: equatable + sha256: c2b87cb7756efdf69892005af546c56c0b5037f54d2a88269b4f347a505e3ca2 + url: "https://pub.dev" + source: hosted + version: "2.0.5" + fake_async: + dependency: transitive + description: + name: fake_async + sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78" + url: "https://pub.dev" + source: hosted + version: "1.3.1" + flutter: + dependency: "direct main" + description: flutter + source: sdk + version: "0.0.0" + flutter_lints: + dependency: "direct dev" + description: + name: flutter_lints + sha256: a25a15ebbdfc33ab1cd26c63a6ee519df92338a9c10f122adda92938253bef04 + url: "https://pub.dev" + source: hosted + version: "2.0.3" + flutter_localizations: + dependency: transitive + description: flutter + source: sdk + version: "0.0.0" + flutter_rx_bloc: + dependency: transitive + description: + name: flutter_rx_bloc + sha256: f8c882169bef39fef31a1f9ca18ff2adac2e9fb7ff12c05f0b3c262963e9ef1e + url: "https://pub.dev" + source: hosted + version: "6.1.1" + flutter_svg: + dependency: transitive + description: + name: flutter_svg + sha256: "7b4ca6cf3304575fe9c8ec64813c8d02ee41d2afe60bcfe0678bcb5375d596a2" + url: "https://pub.dev" + source: hosted + version: "2.0.10+1" + flutter_test: + dependency: "direct dev" + description: flutter + source: sdk + version: "0.0.0" + flutter_web_plugins: + dependency: transitive + description: flutter + source: sdk + version: "0.0.0" + http: + dependency: transitive + description: + name: http + sha256: "761a297c042deedc1ffbb156d6e2af13886bb305c2a343a4d972504cd67dd938" + url: "https://pub.dev" + source: hosted + version: "1.2.1" + http_parser: + dependency: transitive + description: + name: http_parser + sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b" + url: "https://pub.dev" + source: hosted + version: "4.0.2" + intl: + dependency: transitive + description: + name: intl + sha256: "3bc132a9dbce73a7e4a21a17d06e1878839ffbf975568bc875c60537824b0c4d" + url: "https://pub.dev" + source: hosted + version: "0.18.1" + json_annotation: + dependency: transitive + description: + name: json_annotation + sha256: b10a7b2ff83d83c777edba3c6a0f97045ddadd56c944e1a23a3fdf43a1bf4467 + url: "https://pub.dev" + source: hosted + version: "4.8.1" + leak_tracker: + dependency: transitive + description: + name: leak_tracker + sha256: "78eb209deea09858f5269f5a5b02be4049535f568c07b275096836f01ea323fa" + url: "https://pub.dev" + source: hosted + version: "10.0.0" + leak_tracker_flutter_testing: + dependency: transitive + description: + name: leak_tracker_flutter_testing + sha256: b46c5e37c19120a8a01918cfaf293547f47269f7cb4b0058f21531c2465d6ef0 + url: "https://pub.dev" + source: hosted + version: "2.0.1" + leak_tracker_testing: + dependency: transitive + description: + name: leak_tracker_testing + sha256: a597f72a664dbd293f3bfc51f9ba69816f84dcd403cdac7066cb3f6003f3ab47 + url: "https://pub.dev" + source: hosted + version: "2.0.1" + lints: + dependency: transitive + description: + name: lints + sha256: "0a217c6c989d21039f1498c3ed9f3ed71b354e69873f13a8dfc3c9fe76f1b452" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + matcher: + dependency: transitive + description: + name: matcher + sha256: d2323aa2060500f906aa31a895b4030b6da3ebdcc5619d14ce1aada65cd161cb + url: "https://pub.dev" + source: hosted + version: "0.12.16+1" + material_color_utilities: + dependency: transitive + description: + name: material_color_utilities + sha256: "0e0a020085b65b6083975e499759762399b4475f766c21668c4ecca34ea74e5a" + url: "https://pub.dev" + source: hosted + version: "0.8.0" + meta: + dependency: transitive + description: + name: meta + sha256: d584fa6707a52763a52446f02cc621b077888fb63b93bbcb1143a7be5a0c0c04 + url: "https://pub.dev" + source: hosted + version: "1.11.0" + nested: + dependency: transitive + description: + name: nested + sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20" + url: "https://pub.dev" + source: hosted + version: "1.0.0" + path: + dependency: transitive + description: + name: path + sha256: "087ce49c3f0dc39180befefc60fdb4acd8f8620e5682fe2476afd0b3688bb4af" + url: "https://pub.dev" + source: hosted + version: "1.9.0" + path_parsing: + dependency: transitive + description: + name: path_parsing + sha256: e3e67b1629e6f7e8100b367d3db6ba6af4b1f0bb80f64db18ef1fbabd2fa9ccf + url: "https://pub.dev" + source: hosted + version: "1.0.1" + petitparser: + dependency: transitive + description: + name: petitparser + sha256: c15605cd28af66339f8eb6fbe0e541bfe2d1b72d5825efc6598f3e0a31b9ad27 + url: "https://pub.dev" + source: hosted + version: "6.0.2" + pinput: + dependency: transitive + description: + name: pinput + sha256: "6d571e38a484f7515a52e89024ef416f11fa6171ac6f32303701374ab9890efa" + url: "https://pub.dev" + source: hosted + version: "4.0.0" + plugin_platform_interface: + dependency: transitive + description: + name: plugin_platform_interface + sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02" + url: "https://pub.dev" + source: hosted + version: "2.1.8" + provider: + dependency: transitive + description: + name: provider + sha256: c8a055ee5ce3fd98d6fc872478b03823ffdb448699c6ebdbbc71d59b596fd48c + url: "https://pub.dev" + source: hosted + version: "6.1.2" + rx_bloc: + dependency: transitive + description: + name: rx_bloc + sha256: "268e9116233bfccf4ab4c7dfcb3933c08c5bf119d70b99e4fc4d96222500363c" + url: "https://pub.dev" + source: hosted + version: "5.0.3" + rxdart: + dependency: transitive + description: + name: rxdart + sha256: "0c7c0cedd93788d996e33041ffecda924cc54389199cde4e6a34b440f50044cb" + url: "https://pub.dev" + source: hosted + version: "0.27.7" + shimmer: + dependency: transitive + description: + name: shimmer + sha256: "5f88c883a22e9f9f299e5ba0e4f7e6054857224976a5d9f839d4ebdc94a14ac9" + url: "https://pub.dev" + source: hosted + version: "3.0.0" + sky_engine: + dependency: transitive + description: flutter + source: sdk + version: "0.0.99" + smart_auth: + dependency: transitive + description: + name: smart_auth + sha256: "88aa8fe66e951c78a307f26d1c29672dce2e9eb3da2e12e853864d0e615a73ad" + url: "https://pub.dev" + source: hosted + version: "2.0.0" + source_span: + dependency: transitive + description: + name: source_span + sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c" + url: "https://pub.dev" + source: hosted + version: "1.10.0" + stack_trace: + dependency: transitive + description: + name: stack_trace + sha256: "73713990125a6d93122541237550ee3352a2d84baad52d375a4cad2eb9b7ce0b" + url: "https://pub.dev" + source: hosted + version: "1.11.1" + stream_channel: + dependency: transitive + description: + name: stream_channel + sha256: ba2aa5d8cc609d96bbb2899c28934f9e1af5cddbd60a827822ea467161eb54e7 + url: "https://pub.dev" + source: hosted + version: "2.1.2" + string_scanner: + dependency: transitive + description: + name: string_scanner + sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde" + url: "https://pub.dev" + source: hosted + version: "1.2.0" + term_glyph: + dependency: transitive + description: + name: term_glyph + sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84 + url: "https://pub.dev" + source: hosted + version: "1.2.1" + test_api: + dependency: transitive + description: + name: test_api + sha256: "5c2f730018264d276c20e4f1503fd1308dfbbae39ec8ee63c5236311ac06954b" + url: "https://pub.dev" + source: hosted + version: "0.6.1" + theme_tailor_annotation: + dependency: transitive + description: + name: theme_tailor_annotation + sha256: "2990264653b700c7eece3557a5fe5f999cdcd32981aed67023a66004943db08d" + url: "https://pub.dev" + source: hosted + version: "3.0.1" + typed_data: + dependency: transitive + description: + name: typed_data + sha256: facc8d6582f16042dd49f2463ff1bd6e2c9ef9f3d5da3d9b087e244a7b564b3c + url: "https://pub.dev" + source: hosted + version: "1.3.2" + universal_platform: + dependency: transitive + description: + name: universal_platform + sha256: d315be0f6641898b280ffa34e2ddb14f3d12b1a37882557869646e0cc363d0cc + url: "https://pub.dev" + source: hosted + version: "1.0.0+1" + url_launcher: + dependency: transitive + description: + name: url_launcher + sha256: "0ecc004c62fd3ed36a2ffcbe0dd9700aee63bd7532d0b642a488b1ec310f492e" + url: "https://pub.dev" + source: hosted + version: "6.2.5" + url_launcher_android: + dependency: transitive + description: + name: url_launcher_android + sha256: d4ed0711849dd8e33eb2dd69c25db0d0d3fdc37e0a62e629fe32f57a22db2745 + url: "https://pub.dev" + source: hosted + version: "6.3.0" + url_launcher_ios: + dependency: transitive + description: + name: url_launcher_ios + sha256: "9149d493b075ed740901f3ee844a38a00b33116c7c5c10d7fb27df8987fb51d5" + url: "https://pub.dev" + source: hosted + version: "6.2.5" + url_launcher_linux: + dependency: transitive + description: + name: url_launcher_linux + sha256: ab360eb661f8879369acac07b6bb3ff09d9471155357da8443fd5d3cf7363811 + url: "https://pub.dev" + source: hosted + version: "3.1.1" + url_launcher_macos: + dependency: transitive + description: + name: url_launcher_macos + sha256: b7244901ea3cf489c5335bdacda07264a6e960b1c1b1a9f91e4bc371d9e68234 + url: "https://pub.dev" + source: hosted + version: "3.1.0" + url_launcher_platform_interface: + dependency: transitive + description: + name: url_launcher_platform_interface + sha256: "552f8a1e663569be95a8190206a38187b531910283c3e982193e4f2733f01029" + url: "https://pub.dev" + source: hosted + version: "2.3.2" + url_launcher_web: + dependency: transitive + description: + name: url_launcher_web + sha256: "3692a459204a33e04bc94f5fb91158faf4f2c8903281ddd82915adecdb1a901d" + url: "https://pub.dev" + source: hosted + version: "2.3.0" + url_launcher_windows: + dependency: transitive + description: + name: url_launcher_windows + sha256: ecf9725510600aa2bb6d7ddabe16357691b6d2805f66216a97d1b881e21beff7 + url: "https://pub.dev" + source: hosted + version: "3.1.1" + vector_graphics: + dependency: transitive + description: + name: vector_graphics + sha256: "32c3c684e02f9bc0afb0ae0aa653337a2fe022e8ab064bcd7ffda27a74e288e3" + url: "https://pub.dev" + source: hosted + version: "1.1.11+1" + vector_graphics_codec: + dependency: transitive + description: + name: vector_graphics_codec + sha256: c86987475f162fadff579e7320c7ddda04cd2fdeffbe1129227a85d9ac9e03da + url: "https://pub.dev" + source: hosted + version: "1.1.11+1" + vector_graphics_compiler: + dependency: transitive + description: + name: vector_graphics_compiler + sha256: "12faff3f73b1741a36ca7e31b292ddeb629af819ca9efe9953b70bd63fc8cd81" + url: "https://pub.dev" + source: hosted + version: "1.1.11+1" + vector_math: + dependency: transitive + description: + name: vector_math + sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803" + url: "https://pub.dev" + source: hosted + version: "2.1.4" + vm_service: + dependency: transitive + description: + name: vm_service + sha256: b3d56ff4341b8f182b96aceb2fa20e3dcb336b9f867bc0eafc0de10f1048e957 + url: "https://pub.dev" + source: hosted + version: "13.0.0" + web: + dependency: transitive + description: + name: web + sha256: "97da13628db363c635202ad97068d47c5b8aa555808e7a9411963c533b449b27" + url: "https://pub.dev" + source: hosted + version: "0.5.1" + widget_toolkit: + dependency: "direct main" + description: + path: "../../widget_toolkit" + relative: true + source: path + version: "0.0.2" + widget_toolkit_otp: + dependency: "direct main" + description: + path: ".." + relative: true + source: path + version: "0.0.2" + xml: + dependency: transitive + description: + name: xml + sha256: b015a8ad1c488f66851d762d3090a21c600e479dc75e68328c52774040cf9226 + url: "https://pub.dev" + source: hosted + version: "6.5.0" +sdks: + dart: ">=3.3.0 <4.0.0" + flutter: ">=3.19.0" diff --git a/packages/widget_toolkit_pin/example/ios/Podfile.lock b/packages/widget_toolkit_pin/example/ios/Podfile.lock new file mode 100644 index 00000000..a486f156 --- /dev/null +++ b/packages/widget_toolkit_pin/example/ios/Podfile.lock @@ -0,0 +1,41 @@ +PODS: + - app_settings (5.1.1): + - Flutter + - Flutter (1.0.0) + - local_auth_darwin (0.0.1): + - Flutter + - shared_preferences_foundation (0.0.1): + - Flutter + - FlutterMacOS + - url_launcher_ios (0.0.1): + - Flutter + +DEPENDENCIES: + - app_settings (from `.symlinks/plugins/app_settings/ios`) + - Flutter (from `Flutter`) + - local_auth_darwin (from `.symlinks/plugins/local_auth_darwin/darwin`) + - shared_preferences_foundation (from `.symlinks/plugins/shared_preferences_foundation/darwin`) + - url_launcher_ios (from `.symlinks/plugins/url_launcher_ios/ios`) + +EXTERNAL SOURCES: + app_settings: + :path: ".symlinks/plugins/app_settings/ios" + Flutter: + :path: Flutter + local_auth_darwin: + :path: ".symlinks/plugins/local_auth_darwin/darwin" + shared_preferences_foundation: + :path: ".symlinks/plugins/shared_preferences_foundation/darwin" + url_launcher_ios: + :path: ".symlinks/plugins/url_launcher_ios/ios" + +SPEC CHECKSUMS: + app_settings: 017320c6a680cdc94c799949d95b84cb69389ebc + Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7 + local_auth_darwin: c7e464000a6a89e952235699e32b329457608d98 + shared_preferences_foundation: b4c3b4cddf1c21f02770737f147a3f5da9d39695 + url_launcher_ios: bbd758c6e7f9fd7b5b1d4cde34d2b95fcce5e812 + +PODFILE CHECKSUM: c4c93c5f6502fe2754f48404d3594bf779584011 + +COCOAPODS: 1.14.3 diff --git a/packages/widget_toolkit_pin/example/pubspec.lock b/packages/widget_toolkit_pin/example/pubspec.lock new file mode 100644 index 00000000..a6494941 --- /dev/null +++ b/packages/widget_toolkit_pin/example/pubspec.lock @@ -0,0 +1,956 @@ +# Generated by pub +# See https://dart.dev/tools/pub/glossary#lockfile +packages: + _fe_analyzer_shared: + dependency: transitive + description: + name: _fe_analyzer_shared + sha256: "0b2f2bd91ba804e53a61d757b986f89f1f9eaed5b11e4b2f5a2468d86d6c9fc7" + url: "https://pub.dev" + source: hosted + version: "67.0.0" + analyzer: + dependency: transitive + description: + name: analyzer + sha256: "37577842a27e4338429a1cbc32679d508836510b056f1eedf0c8d20e39c1383d" + url: "https://pub.dev" + source: hosted + version: "6.4.1" + app_settings: + dependency: transitive + description: + name: app_settings + sha256: "09bc7fe0313a507087bec1a3baf555f0576e816a760cbb31813a88890a09d9e5" + url: "https://pub.dev" + source: hosted + version: "5.1.1" + args: + dependency: transitive + description: + name: args + sha256: eef6c46b622e0494a36c5a12d10d77fb4e855501a91c1b9ef9339326e58f0596 + url: "https://pub.dev" + source: hosted + version: "2.4.2" + async: + dependency: transitive + description: + name: async + sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c" + url: "https://pub.dev" + source: hosted + version: "2.11.0" + boolean_selector: + dependency: transitive + description: + name: boolean_selector + sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + build: + dependency: transitive + description: + name: build + sha256: "80184af8b6cb3e5c1c4ec6d8544d27711700bc3e6d2efad04238c7b5290889f0" + url: "https://pub.dev" + source: hosted + version: "2.4.1" + build_config: + dependency: transitive + description: + name: build_config + sha256: bf80fcfb46a29945b423bd9aad884590fb1dc69b330a4d4700cac476af1708d1 + url: "https://pub.dev" + source: hosted + version: "1.1.1" + build_daemon: + dependency: transitive + description: + name: build_daemon + sha256: "0343061a33da9c5810b2d6cee51945127d8f4c060b7fbdd9d54917f0a3feaaa1" + url: "https://pub.dev" + source: hosted + version: "4.0.1" + build_resolvers: + dependency: transitive + description: + name: build_resolvers + sha256: "339086358431fa15d7eca8b6a36e5d783728cf025e559b834f4609a1fcfb7b0a" + url: "https://pub.dev" + source: hosted + version: "2.4.2" + build_runner: + dependency: "direct dev" + description: + name: build_runner + sha256: "3ac61a79bfb6f6cc11f693591063a7f19a7af628dc52f141743edac5c16e8c22" + url: "https://pub.dev" + source: hosted + version: "2.4.9" + build_runner_core: + dependency: transitive + description: + name: build_runner_core + sha256: "4ae8ffe5ac758da294ecf1802f2aff01558d8b1b00616aa7538ea9a8a5d50799" + url: "https://pub.dev" + source: hosted + version: "7.3.0" + built_collection: + dependency: transitive + description: + name: built_collection + sha256: "376e3dd27b51ea877c28d525560790aee2e6fbb5f20e2f85d5081027d94e2100" + url: "https://pub.dev" + source: hosted + version: "5.1.1" + built_value: + dependency: transitive + description: + name: built_value + sha256: fedde275e0a6b798c3296963c5cd224e3e1b55d0e478d5b7e65e6b540f363a0e + url: "https://pub.dev" + source: hosted + version: "8.9.1" + characters: + dependency: transitive + description: + name: characters + sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605" + url: "https://pub.dev" + source: hosted + version: "1.3.0" + checked_yaml: + dependency: transitive + description: + name: checked_yaml + sha256: feb6bed21949061731a7a75fc5d2aa727cf160b91af9a3e464c5e3a32e28b5ff + url: "https://pub.dev" + source: hosted + version: "2.0.3" + clock: + dependency: transitive + description: + name: clock + sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf + url: "https://pub.dev" + source: hosted + version: "1.1.1" + code_builder: + dependency: transitive + description: + name: code_builder + sha256: f692079e25e7869c14132d39f223f8eec9830eb76131925143b2129c4bb01b37 + url: "https://pub.dev" + source: hosted + version: "4.10.0" + collection: + dependency: transitive + description: + name: collection + sha256: ee67cb0715911d28db6bf4af1026078bd6f0128b07a5f66fb2ed94ec6783c09a + url: "https://pub.dev" + source: hosted + version: "1.18.0" + convert: + dependency: transitive + description: + name: convert + sha256: "0f08b14755d163f6e2134cb58222dd25ea2a2ee8a195e53983d57c075324d592" + url: "https://pub.dev" + source: hosted + version: "3.1.1" + copy_with_extension: + dependency: transitive + description: + name: copy_with_extension + sha256: fbcf890b0c34aedf0894f91a11a579994b61b4e04080204656b582708b5b1125 + url: "https://pub.dev" + source: hosted + version: "5.0.4" + crypto: + dependency: transitive + description: + name: crypto + sha256: ff625774173754681d66daaf4a448684fb04b78f902da9cb3d308c19cc5e8bab + url: "https://pub.dev" + source: hosted + version: "3.0.3" + dart_style: + dependency: transitive + description: + name: dart_style + sha256: "99e066ce75c89d6b29903d788a7bb9369cf754f7b24bf70bf4b6d6d6b26853b9" + url: "https://pub.dev" + source: hosted + version: "2.3.6" + equatable: + dependency: transitive + description: + name: equatable + sha256: c2b87cb7756efdf69892005af546c56c0b5037f54d2a88269b4f347a505e3ca2 + url: "https://pub.dev" + source: hosted + version: "2.0.5" + fake_async: + dependency: transitive + description: + name: fake_async + sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78" + url: "https://pub.dev" + source: hosted + version: "1.3.1" + ffi: + dependency: transitive + description: + name: ffi + sha256: "493f37e7df1804778ff3a53bd691d8692ddf69702cf4c1c1096a2e41b4779e21" + url: "https://pub.dev" + source: hosted + version: "2.1.2" + file: + dependency: transitive + description: + name: file + sha256: "5fc22d7c25582e38ad9a8515372cd9a93834027aacf1801cf01164dac0ffa08c" + url: "https://pub.dev" + source: hosted + version: "7.0.0" + fixnum: + dependency: transitive + description: + name: fixnum + sha256: "25517a4deb0c03aa0f32fd12db525856438902d9c16536311e76cdc57b31d7d1" + url: "https://pub.dev" + source: hosted + version: "1.1.0" + flutter: + dependency: "direct main" + description: flutter + source: sdk + version: "0.0.0" + flutter_lints: + dependency: "direct dev" + description: + name: flutter_lints + sha256: a25a15ebbdfc33ab1cd26c63a6ee519df92338a9c10f122adda92938253bef04 + url: "https://pub.dev" + source: hosted + version: "2.0.3" + flutter_localizations: + dependency: transitive + description: flutter + source: sdk + version: "0.0.0" + flutter_plugin_android_lifecycle: + dependency: transitive + description: + name: flutter_plugin_android_lifecycle + sha256: b068ffc46f82a55844acfa4fdbb61fad72fa2aef0905548419d97f0f95c456da + url: "https://pub.dev" + source: hosted + version: "2.0.17" + flutter_rx_bloc: + dependency: "direct main" + description: + name: flutter_rx_bloc + sha256: f8c882169bef39fef31a1f9ca18ff2adac2e9fb7ff12c05f0b3c262963e9ef1e + url: "https://pub.dev" + source: hosted + version: "6.1.1" + flutter_svg: + dependency: transitive + description: + name: flutter_svg + sha256: "7b4ca6cf3304575fe9c8ec64813c8d02ee41d2afe60bcfe0678bcb5375d596a2" + url: "https://pub.dev" + source: hosted + version: "2.0.10+1" + flutter_test: + dependency: "direct dev" + description: flutter + source: sdk + version: "0.0.0" + flutter_web_plugins: + dependency: transitive + description: flutter + source: sdk + version: "0.0.0" + frontend_server_client: + dependency: transitive + description: + name: frontend_server_client + sha256: f64a0333a82f30b0cca061bc3d143813a486dc086b574bfb233b7c1372427694 + url: "https://pub.dev" + source: hosted + version: "4.0.0" + glob: + dependency: transitive + description: + name: glob + sha256: "0e7014b3b7d4dac1ca4d6114f82bf1782ee86745b9b42a92c9289c23d8a0ab63" + url: "https://pub.dev" + source: hosted + version: "2.1.2" + graphs: + dependency: transitive + description: + name: graphs + sha256: aedc5a15e78fc65a6e23bcd927f24c64dd995062bcd1ca6eda65a3cff92a4d19 + url: "https://pub.dev" + source: hosted + version: "2.3.1" + http: + dependency: transitive + description: + name: http + sha256: "761a297c042deedc1ffbb156d6e2af13886bb305c2a343a4d972504cd67dd938" + url: "https://pub.dev" + source: hosted + version: "1.2.1" + http_multi_server: + dependency: transitive + description: + name: http_multi_server + sha256: "97486f20f9c2f7be8f514851703d0119c3596d14ea63227af6f7a481ef2b2f8b" + url: "https://pub.dev" + source: hosted + version: "3.2.1" + http_parser: + dependency: transitive + description: + name: http_parser + sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b" + url: "https://pub.dev" + source: hosted + version: "4.0.2" + intl: + dependency: transitive + description: + name: intl + sha256: "3bc132a9dbce73a7e4a21a17d06e1878839ffbf975568bc875c60537824b0c4d" + url: "https://pub.dev" + source: hosted + version: "0.18.1" + io: + dependency: transitive + description: + name: io + sha256: "2ec25704aba361659e10e3e5f5d672068d332fc8ac516421d483a11e5cbd061e" + url: "https://pub.dev" + source: hosted + version: "1.0.4" + js: + dependency: transitive + description: + name: js + sha256: c1b2e9b5ea78c45e1a0788d29606ba27dc5f71f019f32ca5140f61ef071838cf + url: "https://pub.dev" + source: hosted + version: "0.7.1" + json_annotation: + dependency: transitive + description: + name: json_annotation + sha256: b10a7b2ff83d83c777edba3c6a0f97045ddadd56c944e1a23a3fdf43a1bf4467 + url: "https://pub.dev" + source: hosted + version: "4.8.1" + leak_tracker: + dependency: transitive + description: + name: leak_tracker + sha256: "78eb209deea09858f5269f5a5b02be4049535f568c07b275096836f01ea323fa" + url: "https://pub.dev" + source: hosted + version: "10.0.0" + leak_tracker_flutter_testing: + dependency: transitive + description: + name: leak_tracker_flutter_testing + sha256: b46c5e37c19120a8a01918cfaf293547f47269f7cb4b0058f21531c2465d6ef0 + url: "https://pub.dev" + source: hosted + version: "2.0.1" + leak_tracker_testing: + dependency: transitive + description: + name: leak_tracker_testing + sha256: a597f72a664dbd293f3bfc51f9ba69816f84dcd403cdac7066cb3f6003f3ab47 + url: "https://pub.dev" + source: hosted + version: "2.0.1" + lints: + dependency: transitive + description: + name: lints + sha256: "0a217c6c989d21039f1498c3ed9f3ed71b354e69873f13a8dfc3c9fe76f1b452" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + local_auth: + dependency: transitive + description: + name: local_auth + sha256: "280421b416b32de31405b0a25c3bd42dfcef2538dfbb20c03019e02a5ed55ed0" + url: "https://pub.dev" + source: hosted + version: "2.2.0" + local_auth_android: + dependency: transitive + description: + name: local_auth_android + sha256: "3bcd732dda7c75fcb7ddaef12e131230f53dcc8c00790d0d6efb3aa0fbbeda57" + url: "https://pub.dev" + source: hosted + version: "1.0.37" + local_auth_darwin: + dependency: transitive + description: + name: local_auth_darwin + sha256: "33381a15b0de2279523eca694089393bb146baebdce72a404555d03174ebc1e9" + url: "https://pub.dev" + source: hosted + version: "1.2.2" + local_auth_platform_interface: + dependency: transitive + description: + name: local_auth_platform_interface + sha256: "1b842ff177a7068442eae093b64abe3592f816afd2a533c0ebcdbe40f9d2075a" + url: "https://pub.dev" + source: hosted + version: "1.0.10" + local_auth_windows: + dependency: transitive + description: + name: local_auth_windows + sha256: "505ba3367ca781efb1c50d3132e44a2446bccc4163427bc203b9b4d8994d97ea" + url: "https://pub.dev" + source: hosted + version: "1.0.10" + logging: + dependency: transitive + description: + name: logging + sha256: "623a88c9594aa774443aa3eb2d41807a48486b5613e67599fb4c41c0ad47c340" + url: "https://pub.dev" + source: hosted + version: "1.2.0" + matcher: + dependency: transitive + description: + name: matcher + sha256: d2323aa2060500f906aa31a895b4030b6da3ebdcc5619d14ce1aada65cd161cb + url: "https://pub.dev" + source: hosted + version: "0.12.16+1" + material_color_utilities: + dependency: transitive + description: + name: material_color_utilities + sha256: "0e0a020085b65b6083975e499759762399b4475f766c21668c4ecca34ea74e5a" + url: "https://pub.dev" + source: hosted + version: "0.8.0" + meta: + dependency: transitive + description: + name: meta + sha256: d584fa6707a52763a52446f02cc621b077888fb63b93bbcb1143a7be5a0c0c04 + url: "https://pub.dev" + source: hosted + version: "1.11.0" + mime: + dependency: transitive + description: + name: mime + sha256: "2e123074287cc9fd6c09de8336dae606d1ddb88d9ac47358826db698c176a1f2" + url: "https://pub.dev" + source: hosted + version: "1.0.5" + nested: + dependency: transitive + description: + name: nested + sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20" + url: "https://pub.dev" + source: hosted + version: "1.0.0" + package_config: + dependency: transitive + description: + name: package_config + sha256: "1c5b77ccc91e4823a5af61ee74e6b972db1ef98c2ff5a18d3161c982a55448bd" + url: "https://pub.dev" + source: hosted + version: "2.1.0" + path: + dependency: transitive + description: + name: path + sha256: "087ce49c3f0dc39180befefc60fdb4acd8f8620e5682fe2476afd0b3688bb4af" + url: "https://pub.dev" + source: hosted + version: "1.9.0" + path_parsing: + dependency: transitive + description: + name: path_parsing + sha256: e3e67b1629e6f7e8100b367d3db6ba6af4b1f0bb80f64db18ef1fbabd2fa9ccf + url: "https://pub.dev" + source: hosted + version: "1.0.1" + path_provider_linux: + dependency: transitive + description: + name: path_provider_linux + sha256: f7a1fe3a634fe7734c8d3f2766ad746ae2a2884abe22e241a8b301bf5cac3279 + url: "https://pub.dev" + source: hosted + version: "2.2.1" + path_provider_platform_interface: + dependency: transitive + description: + name: path_provider_platform_interface + sha256: "88f5779f72ba699763fa3a3b06aa4bf6de76c8e5de842cf6f29e2e06476c2334" + url: "https://pub.dev" + source: hosted + version: "2.1.2" + path_provider_windows: + dependency: transitive + description: + name: path_provider_windows + sha256: "8bc9f22eee8690981c22aa7fc602f5c85b497a6fb2ceb35ee5a5e5ed85ad8170" + url: "https://pub.dev" + source: hosted + version: "2.2.1" + petitparser: + dependency: transitive + description: + name: petitparser + sha256: c15605cd28af66339f8eb6fbe0e541bfe2d1b72d5825efc6598f3e0a31b9ad27 + url: "https://pub.dev" + source: hosted + version: "6.0.2" + platform: + dependency: transitive + description: + name: platform + sha256: "12220bb4b65720483f8fa9450b4332347737cf8213dd2840d8b2c823e47243ec" + url: "https://pub.dev" + source: hosted + version: "3.1.4" + plugin_platform_interface: + dependency: transitive + description: + name: plugin_platform_interface + sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02" + url: "https://pub.dev" + source: hosted + version: "2.1.8" + pool: + dependency: transitive + description: + name: pool + sha256: "20fe868b6314b322ea036ba325e6fc0711a22948856475e2c2b6306e8ab39c2a" + url: "https://pub.dev" + source: hosted + version: "1.5.1" + provider: + dependency: "direct main" + description: + name: provider + sha256: c8a055ee5ce3fd98d6fc872478b03823ffdb448699c6ebdbbc71d59b596fd48c + url: "https://pub.dev" + source: hosted + version: "6.1.2" + pub_semver: + dependency: transitive + description: + name: pub_semver + sha256: "40d3ab1bbd474c4c2328c91e3a7df8c6dd629b79ece4c4bd04bee496a224fb0c" + url: "https://pub.dev" + source: hosted + version: "2.1.4" + pubspec_parse: + dependency: transitive + description: + name: pubspec_parse + sha256: c63b2876e58e194e4b0828fcb080ad0e06d051cb607a6be51a9e084f47cb9367 + url: "https://pub.dev" + source: hosted + version: "1.2.3" + rx_bloc: + dependency: "direct main" + description: + name: rx_bloc + sha256: "268e9116233bfccf4ab4c7dfcb3933c08c5bf119d70b99e4fc4d96222500363c" + url: "https://pub.dev" + source: hosted + version: "5.0.3" + rx_bloc_list: + dependency: transitive + description: + name: rx_bloc_list + sha256: "75a371e6dabab317116d3fc75d3ca0234755fb81309270ba19c169f25cd0a9e2" + url: "https://pub.dev" + source: hosted + version: "4.0.1" + rxdart: + dependency: transitive + description: + name: rxdart + sha256: "0c7c0cedd93788d996e33041ffecda924cc54389199cde4e6a34b440f50044cb" + url: "https://pub.dev" + source: hosted + version: "0.27.7" + shared_preferences: + dependency: "direct main" + description: + name: shared_preferences + sha256: "81429e4481e1ccfb51ede496e916348668fd0921627779233bd24cc3ff6abd02" + url: "https://pub.dev" + source: hosted + version: "2.2.2" + shared_preferences_android: + dependency: transitive + description: + name: shared_preferences_android + sha256: "8568a389334b6e83415b6aae55378e158fbc2314e074983362d20c562780fb06" + url: "https://pub.dev" + source: hosted + version: "2.2.1" + shared_preferences_foundation: + dependency: transitive + description: + name: shared_preferences_foundation + sha256: "7708d83064f38060c7b39db12aefe449cb8cdc031d6062280087bc4cdb988f5c" + url: "https://pub.dev" + source: hosted + version: "2.3.5" + shared_preferences_linux: + dependency: transitive + description: + name: shared_preferences_linux + sha256: "9f2cbcf46d4270ea8be39fa156d86379077c8a5228d9dfdb1164ae0bb93f1faa" + url: "https://pub.dev" + source: hosted + version: "2.3.2" + shared_preferences_platform_interface: + dependency: transitive + description: + name: shared_preferences_platform_interface + sha256: "22e2ecac9419b4246d7c22bfbbda589e3acf5c0351137d87dd2939d984d37c3b" + url: "https://pub.dev" + source: hosted + version: "2.3.2" + shared_preferences_web: + dependency: transitive + description: + name: shared_preferences_web + sha256: "9aee1089b36bd2aafe06582b7d7817fd317ef05fc30e6ba14bff247d0933042a" + url: "https://pub.dev" + source: hosted + version: "2.3.0" + shared_preferences_windows: + dependency: transitive + description: + name: shared_preferences_windows + sha256: "841ad54f3c8381c480d0c9b508b89a34036f512482c407e6df7a9c4aa2ef8f59" + url: "https://pub.dev" + source: hosted + version: "2.3.2" + shelf: + dependency: transitive + description: + name: shelf + sha256: ad29c505aee705f41a4d8963641f91ac4cee3c8fad5947e033390a7bd8180fa4 + url: "https://pub.dev" + source: hosted + version: "1.4.1" + shelf_web_socket: + dependency: transitive + description: + name: shelf_web_socket + sha256: "9ca081be41c60190ebcb4766b2486a7d50261db7bd0f5d9615f2d653637a84c1" + url: "https://pub.dev" + source: hosted + version: "1.0.4" + shimmer: + dependency: transitive + description: + name: shimmer + sha256: "5f88c883a22e9f9f299e5ba0e4f7e6054857224976a5d9f839d4ebdc94a14ac9" + url: "https://pub.dev" + source: hosted + version: "3.0.0" + sky_engine: + dependency: transitive + description: flutter + source: sdk + version: "0.0.99" + source_span: + dependency: transitive + description: + name: source_span + sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c" + url: "https://pub.dev" + source: hosted + version: "1.10.0" + stack_trace: + dependency: transitive + description: + name: stack_trace + sha256: "73713990125a6d93122541237550ee3352a2d84baad52d375a4cad2eb9b7ce0b" + url: "https://pub.dev" + source: hosted + version: "1.11.1" + stream_channel: + dependency: transitive + description: + name: stream_channel + sha256: ba2aa5d8cc609d96bbb2899c28934f9e1af5cddbd60a827822ea467161eb54e7 + url: "https://pub.dev" + source: hosted + version: "2.1.2" + stream_transform: + dependency: transitive + description: + name: stream_transform + sha256: "14a00e794c7c11aa145a170587321aedce29769c08d7f58b1d141da75e3b1c6f" + url: "https://pub.dev" + source: hosted + version: "2.1.0" + string_scanner: + dependency: transitive + description: + name: string_scanner + sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde" + url: "https://pub.dev" + source: hosted + version: "1.2.0" + term_glyph: + dependency: transitive + description: + name: term_glyph + sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84 + url: "https://pub.dev" + source: hosted + version: "1.2.1" + test_api: + dependency: transitive + description: + name: test_api + sha256: "5c2f730018264d276c20e4f1503fd1308dfbbae39ec8ee63c5236311ac06954b" + url: "https://pub.dev" + source: hosted + version: "0.6.1" + theme_tailor_annotation: + dependency: transitive + description: + name: theme_tailor_annotation + sha256: "2990264653b700c7eece3557a5fe5f999cdcd32981aed67023a66004943db08d" + url: "https://pub.dev" + source: hosted + version: "3.0.1" + timing: + dependency: transitive + description: + name: timing + sha256: "70a3b636575d4163c477e6de42f247a23b315ae20e86442bebe32d3cabf61c32" + url: "https://pub.dev" + source: hosted + version: "1.0.1" + typed_data: + dependency: transitive + description: + name: typed_data + sha256: facc8d6582f16042dd49f2463ff1bd6e2c9ef9f3d5da3d9b087e244a7b564b3c + url: "https://pub.dev" + source: hosted + version: "1.3.2" + url_launcher: + dependency: transitive + description: + name: url_launcher + sha256: "0ecc004c62fd3ed36a2ffcbe0dd9700aee63bd7532d0b642a488b1ec310f492e" + url: "https://pub.dev" + source: hosted + version: "6.2.5" + url_launcher_android: + dependency: transitive + description: + name: url_launcher_android + sha256: d4ed0711849dd8e33eb2dd69c25db0d0d3fdc37e0a62e629fe32f57a22db2745 + url: "https://pub.dev" + source: hosted + version: "6.3.0" + url_launcher_ios: + dependency: transitive + description: + name: url_launcher_ios + sha256: "9149d493b075ed740901f3ee844a38a00b33116c7c5c10d7fb27df8987fb51d5" + url: "https://pub.dev" + source: hosted + version: "6.2.5" + url_launcher_linux: + dependency: transitive + description: + name: url_launcher_linux + sha256: ab360eb661f8879369acac07b6bb3ff09d9471155357da8443fd5d3cf7363811 + url: "https://pub.dev" + source: hosted + version: "3.1.1" + url_launcher_macos: + dependency: transitive + description: + name: url_launcher_macos + sha256: b7244901ea3cf489c5335bdacda07264a6e960b1c1b1a9f91e4bc371d9e68234 + url: "https://pub.dev" + source: hosted + version: "3.1.0" + url_launcher_platform_interface: + dependency: transitive + description: + name: url_launcher_platform_interface + sha256: "552f8a1e663569be95a8190206a38187b531910283c3e982193e4f2733f01029" + url: "https://pub.dev" + source: hosted + version: "2.3.2" + url_launcher_web: + dependency: transitive + description: + name: url_launcher_web + sha256: "3692a459204a33e04bc94f5fb91158faf4f2c8903281ddd82915adecdb1a901d" + url: "https://pub.dev" + source: hosted + version: "2.3.0" + url_launcher_windows: + dependency: transitive + description: + name: url_launcher_windows + sha256: ecf9725510600aa2bb6d7ddabe16357691b6d2805f66216a97d1b881e21beff7 + url: "https://pub.dev" + source: hosted + version: "3.1.1" + vector_graphics: + dependency: transitive + description: + name: vector_graphics + sha256: "32c3c684e02f9bc0afb0ae0aa653337a2fe022e8ab064bcd7ffda27a74e288e3" + url: "https://pub.dev" + source: hosted + version: "1.1.11+1" + vector_graphics_codec: + dependency: transitive + description: + name: vector_graphics_codec + sha256: c86987475f162fadff579e7320c7ddda04cd2fdeffbe1129227a85d9ac9e03da + url: "https://pub.dev" + source: hosted + version: "1.1.11+1" + vector_graphics_compiler: + dependency: transitive + description: + name: vector_graphics_compiler + sha256: "12faff3f73b1741a36ca7e31b292ddeb629af819ca9efe9953b70bd63fc8cd81" + url: "https://pub.dev" + source: hosted + version: "1.1.11+1" + vector_math: + dependency: transitive + description: + name: vector_math + sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803" + url: "https://pub.dev" + source: hosted + version: "2.1.4" + vm_service: + dependency: transitive + description: + name: vm_service + sha256: b3d56ff4341b8f182b96aceb2fa20e3dcb336b9f867bc0eafc0de10f1048e957 + url: "https://pub.dev" + source: hosted + version: "13.0.0" + watcher: + dependency: transitive + description: + name: watcher + sha256: "3d2ad6751b3c16cf07c7fca317a1413b3f26530319181b37e3b9039b84fc01d8" + url: "https://pub.dev" + source: hosted + version: "1.1.0" + web: + dependency: transitive + description: + name: web + sha256: "97da13628db363c635202ad97068d47c5b8aa555808e7a9411963c533b449b27" + url: "https://pub.dev" + source: hosted + version: "0.5.1" + web_socket_channel: + dependency: transitive + description: + name: web_socket_channel + sha256: "1d8e795e2a8b3730c41b8a98a2dff2e0fb57ae6f0764a1c46ec5915387d257b2" + url: "https://pub.dev" + source: hosted + version: "2.4.4" + widget_toolkit: + dependency: "direct main" + description: + path: "../../widget_toolkit" + relative: true + source: path + version: "0.0.2" + widget_toolkit_biometrics: + dependency: "direct main" + description: + path: "../../widget_toolkit_biometrics" + relative: true + source: path + version: "0.0.2" + widget_toolkit_pin: + dependency: "direct main" + description: + path: ".." + relative: true + source: path + version: "0.0.2" + win32: + dependency: transitive + description: + name: win32 + sha256: "0a989dc7ca2bb51eac91e8fd00851297cfffd641aa7538b165c62637ca0eaa4a" + url: "https://pub.dev" + source: hosted + version: "5.4.0" + xdg_directories: + dependency: transitive + description: + name: xdg_directories + sha256: faea9dee56b520b55a566385b84f2e8de55e7496104adada9962e0bd11bcff1d + url: "https://pub.dev" + source: hosted + version: "1.0.4" + xml: + dependency: transitive + description: + name: xml + sha256: b015a8ad1c488f66851d762d3090a21c600e479dc75e68328c52774040cf9226 + url: "https://pub.dev" + source: hosted + version: "6.5.0" + yaml: + dependency: transitive + description: + name: yaml + sha256: "75769501ea3489fca56601ff33454fe45507ea3bfb014161abc3b43ae25989d5" + url: "https://pub.dev" + source: hosted + version: "3.1.2" +sdks: + dart: ">=3.3.0 <4.0.0" + flutter: ">=3.19.0" diff --git a/packages/widget_toolkit_qr/example/pubspec.lock b/packages/widget_toolkit_qr/example/pubspec.lock new file mode 100644 index 00000000..a21ead87 --- /dev/null +++ b/packages/widget_toolkit_qr/example/pubspec.lock @@ -0,0 +1,557 @@ +# Generated by pub +# See https://dart.dev/tools/pub/glossary#lockfile +packages: + app_settings: + dependency: transitive + description: + name: app_settings + sha256: "09bc7fe0313a507087bec1a3baf555f0576e816a760cbb31813a88890a09d9e5" + url: "https://pub.dev" + source: hosted + version: "5.1.1" + args: + dependency: transitive + description: + name: args + sha256: eef6c46b622e0494a36c5a12d10d77fb4e855501a91c1b9ef9339326e58f0596 + url: "https://pub.dev" + source: hosted + version: "2.4.2" + async: + dependency: transitive + description: + name: async + sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c" + url: "https://pub.dev" + source: hosted + version: "2.11.0" + boolean_selector: + dependency: transitive + description: + name: boolean_selector + sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + characters: + dependency: transitive + description: + name: characters + sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605" + url: "https://pub.dev" + source: hosted + version: "1.3.0" + clock: + dependency: transitive + description: + name: clock + sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf + url: "https://pub.dev" + source: hosted + version: "1.1.1" + collection: + dependency: transitive + description: + name: collection + sha256: ee67cb0715911d28db6bf4af1026078bd6f0128b07a5f66fb2ed94ec6783c09a + url: "https://pub.dev" + source: hosted + version: "1.18.0" + copy_with_extension: + dependency: transitive + description: + name: copy_with_extension + sha256: fbcf890b0c34aedf0894f91a11a579994b61b4e04080204656b582708b5b1125 + url: "https://pub.dev" + source: hosted + version: "5.0.4" + equatable: + dependency: transitive + description: + name: equatable + sha256: c2b87cb7756efdf69892005af546c56c0b5037f54d2a88269b4f347a505e3ca2 + url: "https://pub.dev" + source: hosted + version: "2.0.5" + fake_async: + dependency: transitive + description: + name: fake_async + sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78" + url: "https://pub.dev" + source: hosted + version: "1.3.1" + flutter: + dependency: "direct main" + description: flutter + source: sdk + version: "0.0.0" + flutter_lints: + dependency: "direct dev" + description: + name: flutter_lints + sha256: a25a15ebbdfc33ab1cd26c63a6ee519df92338a9c10f122adda92938253bef04 + url: "https://pub.dev" + source: hosted + version: "2.0.3" + flutter_localizations: + dependency: transitive + description: flutter + source: sdk + version: "0.0.0" + flutter_qr_bar_scanner: + dependency: transitive + description: + name: flutter_qr_bar_scanner + sha256: "32f8f8dc93e308f177ce8c0379f575a9a14c2d7cb98d6a136c0108e67e7ac379" + url: "https://pub.dev" + source: hosted + version: "3.0.2" + flutter_rx_bloc: + dependency: transitive + description: + name: flutter_rx_bloc + sha256: f8c882169bef39fef31a1f9ca18ff2adac2e9fb7ff12c05f0b3c262963e9ef1e + url: "https://pub.dev" + source: hosted + version: "6.1.1" + flutter_svg: + dependency: transitive + description: + name: flutter_svg + sha256: "7b4ca6cf3304575fe9c8ec64813c8d02ee41d2afe60bcfe0678bcb5375d596a2" + url: "https://pub.dev" + source: hosted + version: "2.0.10+1" + flutter_test: + dependency: "direct dev" + description: flutter + source: sdk + version: "0.0.0" + flutter_web_plugins: + dependency: transitive + description: flutter + source: sdk + version: "0.0.0" + http: + dependency: transitive + description: + name: http + sha256: "761a297c042deedc1ffbb156d6e2af13886bb305c2a343a4d972504cd67dd938" + url: "https://pub.dev" + source: hosted + version: "1.2.1" + http_parser: + dependency: transitive + description: + name: http_parser + sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b" + url: "https://pub.dev" + source: hosted + version: "4.0.2" + intl: + dependency: transitive + description: + name: intl + sha256: "3bc132a9dbce73a7e4a21a17d06e1878839ffbf975568bc875c60537824b0c4d" + url: "https://pub.dev" + source: hosted + version: "0.18.1" + json_annotation: + dependency: transitive + description: + name: json_annotation + sha256: b10a7b2ff83d83c777edba3c6a0f97045ddadd56c944e1a23a3fdf43a1bf4467 + url: "https://pub.dev" + source: hosted + version: "4.8.1" + leak_tracker: + dependency: transitive + description: + name: leak_tracker + sha256: "78eb209deea09858f5269f5a5b02be4049535f568c07b275096836f01ea323fa" + url: "https://pub.dev" + source: hosted + version: "10.0.0" + leak_tracker_flutter_testing: + dependency: transitive + description: + name: leak_tracker_flutter_testing + sha256: b46c5e37c19120a8a01918cfaf293547f47269f7cb4b0058f21531c2465d6ef0 + url: "https://pub.dev" + source: hosted + version: "2.0.1" + leak_tracker_testing: + dependency: transitive + description: + name: leak_tracker_testing + sha256: a597f72a664dbd293f3bfc51f9ba69816f84dcd403cdac7066cb3f6003f3ab47 + url: "https://pub.dev" + source: hosted + version: "2.0.1" + lints: + dependency: transitive + description: + name: lints + sha256: "0a217c6c989d21039f1498c3ed9f3ed71b354e69873f13a8dfc3c9fe76f1b452" + url: "https://pub.dev" + source: hosted + version: "2.1.1" + matcher: + dependency: transitive + description: + name: matcher + sha256: d2323aa2060500f906aa31a895b4030b6da3ebdcc5619d14ce1aada65cd161cb + url: "https://pub.dev" + source: hosted + version: "0.12.16+1" + material_color_utilities: + dependency: transitive + description: + name: material_color_utilities + sha256: "0e0a020085b65b6083975e499759762399b4475f766c21668c4ecca34ea74e5a" + url: "https://pub.dev" + source: hosted + version: "0.8.0" + meta: + dependency: transitive + description: + name: meta + sha256: d584fa6707a52763a52446f02cc621b077888fb63b93bbcb1143a7be5a0c0c04 + url: "https://pub.dev" + source: hosted + version: "1.11.0" + native_device_orientation: + dependency: transitive + description: + name: native_device_orientation + sha256: "744a03030fad5a332a54833cd34f1e2ee51ae9acf477b4ef85bacc8823af9937" + url: "https://pub.dev" + source: hosted + version: "1.2.1" + nested: + dependency: transitive + description: + name: nested + sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20" + url: "https://pub.dev" + source: hosted + version: "1.0.0" + path: + dependency: transitive + description: + name: path + sha256: "087ce49c3f0dc39180befefc60fdb4acd8f8620e5682fe2476afd0b3688bb4af" + url: "https://pub.dev" + source: hosted + version: "1.9.0" + path_parsing: + dependency: transitive + description: + name: path_parsing + sha256: e3e67b1629e6f7e8100b367d3db6ba6af4b1f0bb80f64db18ef1fbabd2fa9ccf + url: "https://pub.dev" + source: hosted + version: "1.0.1" + permission_handler: + dependency: transitive + description: + name: permission_handler + sha256: "18bf33f7fefbd812f37e72091a15575e72d5318854877e0e4035a24ac1113ecb" + url: "https://pub.dev" + source: hosted + version: "11.3.1" + permission_handler_android: + dependency: transitive + description: + name: permission_handler_android + sha256: "1acac6bae58144b442f11e66621c062aead9c99841093c38f5bcdcc24c1c3474" + url: "https://pub.dev" + source: hosted + version: "12.0.5" + permission_handler_apple: + dependency: transitive + description: + name: permission_handler_apple + sha256: e9ad66020b89ff1b63908f247c2c6f931c6e62699b756ef8b3c4569350cd8662 + url: "https://pub.dev" + source: hosted + version: "9.4.4" + permission_handler_html: + dependency: transitive + description: + name: permission_handler_html + sha256: "54bf176b90f6eddd4ece307e2c06cf977fb3973719c35a93b85cc7093eb6070d" + url: "https://pub.dev" + source: hosted + version: "0.1.1" + permission_handler_platform_interface: + dependency: transitive + description: + name: permission_handler_platform_interface + sha256: "48d4fcf201a1dad93ee869ab0d4101d084f49136ec82a8a06ed9cfeacab9fd20" + url: "https://pub.dev" + source: hosted + version: "4.2.1" + permission_handler_windows: + dependency: transitive + description: + name: permission_handler_windows + sha256: "1a790728016f79a41216d88672dbc5df30e686e811ad4e698bfc51f76ad91f1e" + url: "https://pub.dev" + source: hosted + version: "0.2.1" + petitparser: + dependency: transitive + description: + name: petitparser + sha256: c15605cd28af66339f8eb6fbe0e541bfe2d1b72d5825efc6598f3e0a31b9ad27 + url: "https://pub.dev" + source: hosted + version: "6.0.2" + plugin_platform_interface: + dependency: transitive + description: + name: plugin_platform_interface + sha256: "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02" + url: "https://pub.dev" + source: hosted + version: "2.1.8" + provider: + dependency: transitive + description: + name: provider + sha256: c8a055ee5ce3fd98d6fc872478b03823ffdb448699c6ebdbbc71d59b596fd48c + url: "https://pub.dev" + source: hosted + version: "6.1.2" + rx_bloc: + dependency: transitive + description: + name: rx_bloc + sha256: "268e9116233bfccf4ab4c7dfcb3933c08c5bf119d70b99e4fc4d96222500363c" + url: "https://pub.dev" + source: hosted + version: "5.0.3" + rxdart: + dependency: transitive + description: + name: rxdart + sha256: "0c7c0cedd93788d996e33041ffecda924cc54389199cde4e6a34b440f50044cb" + url: "https://pub.dev" + source: hosted + version: "0.27.7" + shimmer: + dependency: transitive + description: + name: shimmer + sha256: "5f88c883a22e9f9f299e5ba0e4f7e6054857224976a5d9f839d4ebdc94a14ac9" + url: "https://pub.dev" + source: hosted + version: "3.0.0" + sky_engine: + dependency: transitive + description: flutter + source: sdk + version: "0.0.99" + source_span: + dependency: transitive + description: + name: source_span + sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c" + url: "https://pub.dev" + source: hosted + version: "1.10.0" + stack_trace: + dependency: transitive + description: + name: stack_trace + sha256: "73713990125a6d93122541237550ee3352a2d84baad52d375a4cad2eb9b7ce0b" + url: "https://pub.dev" + source: hosted + version: "1.11.1" + stream_channel: + dependency: transitive + description: + name: stream_channel + sha256: ba2aa5d8cc609d96bbb2899c28934f9e1af5cddbd60a827822ea467161eb54e7 + url: "https://pub.dev" + source: hosted + version: "2.1.2" + string_scanner: + dependency: transitive + description: + name: string_scanner + sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde" + url: "https://pub.dev" + source: hosted + version: "1.2.0" + term_glyph: + dependency: transitive + description: + name: term_glyph + sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84 + url: "https://pub.dev" + source: hosted + version: "1.2.1" + test_api: + dependency: transitive + description: + name: test_api + sha256: "5c2f730018264d276c20e4f1503fd1308dfbbae39ec8ee63c5236311ac06954b" + url: "https://pub.dev" + source: hosted + version: "0.6.1" + theme_tailor_annotation: + dependency: transitive + description: + name: theme_tailor_annotation + sha256: "2990264653b700c7eece3557a5fe5f999cdcd32981aed67023a66004943db08d" + url: "https://pub.dev" + source: hosted + version: "3.0.1" + typed_data: + dependency: transitive + description: + name: typed_data + sha256: facc8d6582f16042dd49f2463ff1bd6e2c9ef9f3d5da3d9b087e244a7b564b3c + url: "https://pub.dev" + source: hosted + version: "1.3.2" + url_launcher: + dependency: transitive + description: + name: url_launcher + sha256: "0ecc004c62fd3ed36a2ffcbe0dd9700aee63bd7532d0b642a488b1ec310f492e" + url: "https://pub.dev" + source: hosted + version: "6.2.5" + url_launcher_android: + dependency: transitive + description: + name: url_launcher_android + sha256: d4ed0711849dd8e33eb2dd69c25db0d0d3fdc37e0a62e629fe32f57a22db2745 + url: "https://pub.dev" + source: hosted + version: "6.3.0" + url_launcher_ios: + dependency: transitive + description: + name: url_launcher_ios + sha256: "9149d493b075ed740901f3ee844a38a00b33116c7c5c10d7fb27df8987fb51d5" + url: "https://pub.dev" + source: hosted + version: "6.2.5" + url_launcher_linux: + dependency: transitive + description: + name: url_launcher_linux + sha256: ab360eb661f8879369acac07b6bb3ff09d9471155357da8443fd5d3cf7363811 + url: "https://pub.dev" + source: hosted + version: "3.1.1" + url_launcher_macos: + dependency: transitive + description: + name: url_launcher_macos + sha256: b7244901ea3cf489c5335bdacda07264a6e960b1c1b1a9f91e4bc371d9e68234 + url: "https://pub.dev" + source: hosted + version: "3.1.0" + url_launcher_platform_interface: + dependency: transitive + description: + name: url_launcher_platform_interface + sha256: "552f8a1e663569be95a8190206a38187b531910283c3e982193e4f2733f01029" + url: "https://pub.dev" + source: hosted + version: "2.3.2" + url_launcher_web: + dependency: transitive + description: + name: url_launcher_web + sha256: "3692a459204a33e04bc94f5fb91158faf4f2c8903281ddd82915adecdb1a901d" + url: "https://pub.dev" + source: hosted + version: "2.3.0" + url_launcher_windows: + dependency: transitive + description: + name: url_launcher_windows + sha256: ecf9725510600aa2bb6d7ddabe16357691b6d2805f66216a97d1b881e21beff7 + url: "https://pub.dev" + source: hosted + version: "3.1.1" + vector_graphics: + dependency: transitive + description: + name: vector_graphics + sha256: "32c3c684e02f9bc0afb0ae0aa653337a2fe022e8ab064bcd7ffda27a74e288e3" + url: "https://pub.dev" + source: hosted + version: "1.1.11+1" + vector_graphics_codec: + dependency: transitive + description: + name: vector_graphics_codec + sha256: c86987475f162fadff579e7320c7ddda04cd2fdeffbe1129227a85d9ac9e03da + url: "https://pub.dev" + source: hosted + version: "1.1.11+1" + vector_graphics_compiler: + dependency: transitive + description: + name: vector_graphics_compiler + sha256: "12faff3f73b1741a36ca7e31b292ddeb629af819ca9efe9953b70bd63fc8cd81" + url: "https://pub.dev" + source: hosted + version: "1.1.11+1" + vector_math: + dependency: transitive + description: + name: vector_math + sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803" + url: "https://pub.dev" + source: hosted + version: "2.1.4" + vm_service: + dependency: transitive + description: + name: vm_service + sha256: b3d56ff4341b8f182b96aceb2fa20e3dcb336b9f867bc0eafc0de10f1048e957 + url: "https://pub.dev" + source: hosted + version: "13.0.0" + web: + dependency: transitive + description: + name: web + sha256: "97da13628db363c635202ad97068d47c5b8aa555808e7a9411963c533b449b27" + url: "https://pub.dev" + source: hosted + version: "0.5.1" + widget_toolkit: + dependency: "direct main" + description: + path: "../../widget_toolkit" + relative: true + source: path + version: "0.0.2" + widget_toolkit_qr: + dependency: "direct main" + description: + path: ".." + relative: true + source: path + version: "0.0.2" + xml: + dependency: transitive + description: + name: xml + sha256: b015a8ad1c488f66851d762d3090a21c600e479dc75e68328c52774040cf9226 + url: "https://pub.dev" + source: hosted + version: "6.5.0" +sdks: + dart: ">=3.3.0 <4.0.0" + flutter: ">=3.19.0"