async_redux_core 1.2.1 async_redux_core: ^1.2.1 copied to clipboard
Dart-only core package for the Async Redux state management, the easy and powerful version of Redux.
async_redux_core #
This is the core Dart-only package for the async_redux package.
In your Flutter app: #
-
Do NOT include this core package directly.
Instead, go to the async_redux package which already exports this core code, plus provides Flutter related code.
In your Dart server or Dart-only code: #
-
For the moment, this Dart-only package simply contains the
UserException
class, and nothing more. -
If you are creating code for a Dart server (backend) like Celest, or developing some Dart-only package that does not depend on Flutter, then you can use this package directly:
import 'package:async_redux_core/async_redux_core.dart';
Note: When using Celest, this is especially useful for throwing
UserException
in your backend code. Celest will make sure to throw that exception in the frontend. As long as the Celest cloud function is called inside redux actions, Async Redux will display the exception message to the user in a dialog (or other UI element that you can customize). This can also be used with package i18n_extension_core to make sure the error message gets translated to the user's language. For example:UserException('The password you typed is invalid'.i18n);
in the backend, will reach the frontend already translated asUserException('La contraseña que ingresaste no es válida')
if the user device is in Spanish.
Documentation #
Go to async_redux to read the docs.
Marcelo Glasberg #
https://github.com/marcglasberg
https://twitter.com/glasbergmarcelo
https://stackoverflow.com/users/3411681/marcg
https://medium.com/@marcglasberg
The Flutter packages I've authored:
- async_redux
- fast_immutable_collections
- provider_for_redux
- async_redux
- align_positioned
- network_to_file_image
- image_pixels
- matrix4_transform
- back_button_interceptor
- indexed_list_view
- animated_size_and_fade
- assorted_layout_widgets
- weak_map
- themed
My Medium Articles:
- Async Redux: Flutter’s non-boilerplate version of Redux ( versions: Português)
- async_redux ( versions: Português)
- Flutter: The Advanced Layout Rule Even Beginners Must Know ( versions: русский)
- The New Way to create Themes in your Flutter App
- A new BDD tool for TypeScript/React, and Flutter/Dart
My article in the official Flutter documentation: