spread_core

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

spread core

Spread CORE Library #
Easily manage and observe the state of your Dart applications.
Overview #
The Spread CORE library offers a simplified way of managing state within Dart applications. With the use of entities, subscribers, and state emitters, developers can easily store, observe, and manipulate states without the usual boilerplate.
Features #

State Management: Store state data using identifiers, types, or entities. It's like a Key-Value map with observable events.
Observers: Subscribe to specific state changes and react accordingly.
State Emitters: a Mixin to Emit state changes based on types, names, or entities.
Use Cases: Abstracted business or domain logic encapsulation with the UseCase class.
Entities: Subscribe UI changes to a specific object instance identified by Type and ID.

Getting Started #
Installation
Include the library in your pubspec.yaml:

dependencies:
spread_core: ^0.0.6
copied to clipboard
Then run:

pub get
copied to clipboard
Basic Usage
Define a state entity:
import 'package:spread_core/spread_core.dart';

class User implements Entity {
final String id;
final String name;

User({required this.id, required this.name});

@override
String get entityId => id;
}
copied to clipboard
and/or Define a typed entity:
import 'user.dart';

abstract class UsersState {}

class LoadingUsers extends UsersState {}

class LoadedUsersSuccess extends UsersState {
final List<User> users;

LoadedUsersSuccess({required this.users});
}

class LoadedUsersFail extends UsersState {
final Object? error;
final StackTrace? stackTrace;

LoadedUsersFail({required this.error, required this.stackTrace});
}
copied to clipboard
Emitting state:
Using the StateEmitter mixin:
import 'package:spread_core/spread_core.dart';

class UserManager with StateEmitter {

void updateUser(User user) {
emitEntity<User>(user);
}
}
copied to clipboard
Observing state:
Extend from the SpreadObserver:
import 'package:spread_core/spread_core.dart';

class UserObserver extends SpreadObserver {

@override
void onState(User user) {
print('User updated: ${user.name}');
}
}
copied to clipboard
Documentation #
Detailed documentation is available in the source code.
Contributing #
Contributions, issues, and feature requests are welcome! See our contribution guidelines for more information.
License #
This project is licensed under the BSD License. See the LICENSE file for details.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.