mobx.dart icon indicating copy to clipboard operation
mobx.dart copied to clipboard

MobX for the Dart language. Hassle-free, reactive state-management for your Dart and Flutter apps.

Results 112 mobx.dart issues
Sort by recently updated
recently updated
newest added

Create a custom equals parameter for [`ObservableStream`](https://pub.dev/documentation/mobx/latest/mobx/ObservableStream-class.html), like what exists already for [`Observable`](https://pub.dev/documentation/mobx/latest/mobx/Observable/Observable.html). Currently, `ObservableStream` uses == to determine if the value changed. This creates an option to override that...

Signed-off-by: Minsu Lee https://github.com/mobxjs/mobx/blob/63698d0681988194bac5fc01851882b417b35f18/packages/mobx/__tests__/v5/base/action.js#L4 --- ## Pull Request Checklist - [x] If the changes are being made to code, ensure the **version in `pubspec.yaml`** is updated. - [x] Increment the...

Describe the changes proposed in this Pull Request. If the test fails, github action should fail. https://github.com/mobxjs/mobx.dart/pull/784 has failed tests, but [check](https://github.com/mobxjs/mobx.dart/runs/6815659674?check_suite_focus=true) succeeded. --- ## Pull Request Checklist - [x]...

``` cd mobx_codegen dart analyze --fatal-warnings --fatal-infos . ``` ``` info • lib/src/type_names.dart:77:28 • 'element' is deprecated and shouldn't be used. Check for specific DartType subtype and use element2 instead....

It could be expected behavior, but it is not consistent with how **value** setter of Observable works - it checks if value was changed and reports change only if this...

Hi I have a problem after updating to the newest mobx version. Take the following example: ``` class _MyWidgetState = _MyWidgetStateBase with _$_MyWidgetState; abstract class _MyWidgetStateBase extends State with Store...

I am using the latest version of mobx, on mobile it works correctly, but on the web version my data is not updated until I do hot reload, what could...

Bumps [terser](https://github.com/terser/terser) from 5.10.0 to 5.14.2. Changelog Sourced from terser's changelog. v5.14.2 Security fix for RegExps that should not be evaluated (regexp DDOS) Source maps improvements (#1211) Performance improvements in...

dependencies

i have progress bar and need progress upload from dio. This is my store code ``` @observable int? uploadProgress; Future addPost(PostBundle postBundle) async { PostBundle getPostBundle = postBundle; updateListPostUploading(postBundle: getPostBundle);...