flutter_blocx 0.8.3
flutter_blocx: ^0.8.3 copied to clipboard
Ui widgets to work with blocx_core.
Changelog #
0.8.3 #
- Updated README.md
0.8.2 #
- Updated CHANGELOG.md
0.8.1 #
- Updated README.md to fix some inconsistencies
0.8.0 #
Added #
-
BlocxScreenManagerState.errorWidgetByErrorCode— new overridable hook that builds a full-page error widget forScreenManagerCubitStateDisplayErrorPageByErrorCode. Convertsstate.errorCodeto a human-readable message viaBlocXLocalizations.errorCodeMessageand renders aBlocxErrorWidget. Override to add per-error-code UI, retry logic, or reporting callbacks. -
BlocxScreenManagerState.decorateScaffold— new overridable hook to wrap the scaffold produced byscaffoldWidgetwith additional widgets (e.g.PopScope, theme providers). Only called whenwrapInScaffoldistrue. -
BlocXLocalizations— new required members:close— label for dismiss/close actions in built-in error and snackbar widgets.copyDetails— label for the "copy error details" action inBlocxErrorWidget.dateRangeError(DateTime minDate, DateTime maxDate)— message used by the date-range validator when the selected date falls outside the allowed range.BlocXErrorCode.fieldCannotBeEmpty— new error code; add a translation in yourerrorCodeMessagesmap.
-
BlocxScreenManagerStatedocumentation — comprehensive dartdoc added to all public/protected members:wrapInScaffold,managerCubit,decorateScaffold,errorWidget,errorWidgetByErrorCode,mainWidget,scaffoldWidget.
Changed #
-
blocx_coredependency bumped from0.7.1to^0.8.2, picking up all breaking mixin renames and the newBlocxPaginatedUseCaseTaskintroduced inblocx_core0.8.0. -
BlocxScreenManagerState.showSnackBar— parameter list reformatted to one-per-line for readability; no API change. -
BlocxScreenManagerState.scaffoldWidget—UnimplementedErrormessage split across lines for readability; message text unchanged. -
Example
ExampleLocalizations—errorGettingInitialFormDataentry condensed to a single line; new entries added (see Added above). -
Example
MyApp—ThemeDataconstruction collapsed to a single line; no visual change.
Migration Guide #
Update your pubspec constraint
dependencies:
flutter_blocx: ^0.8.0
Implement new BlocXLocalizations members
Add the three new members to your BlocXLocalizations subclass:
@override
String get close => 'Close';
@override
String get copyDetails => 'Copy details';
@override
String dateRangeError(DateTime minDate, DateTime maxDate) =>
'Date must be between $minDate and $maxDate.';
Add the new error code to your errorCodeMessages map:
BlocXErrorCode.fieldCannotBeEmpty: 'This field cannot be empty',
Adopt blocx_core 0.8.x mixin renames
blocx_core ^0.8.2 renamed all collection mixins and form mixins. Update your with clauses — see the blocx_core 0.8.0 migration guide for the full rename table.
0.7.1 prior release #
See repository history for earlier entries.