async_redux_core 1.2.0 copy "async_redux_core: ^1.2.0" to clipboard
async_redux_core: ^1.2.0 copied to clipboard

Dart-only core package for the Async Redux state management, the easy and powerful version of Redux.

pub package

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 as UserException('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:

My Medium Articles:

My article in the official Flutter documentation:

1
likes
130
pub points
59%
popularity

Publisher

verified publisherglasberg.dev

Dart-only core package for the Async Redux state management, the easy and powerful version of Redux.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

i18n_extension_core, meta

More

Packages that depend on async_redux_core