Minsu Lee

Results 93 comments of Minsu Lee

@yunustaha Please provide the code with `gridSutun`.

@subzero911 I think `_searchPlaces` should handle that. method 1. Shows only the results of the last request ```dart DateTime _lastSearchTime; Future _searchPlaces() async { final searchTime = DateTIme.now(); _lastSearchTime =...

@Elvis5566 https://github.com/mobxjs/mobx.dart/issues/853#issuecomment-1265203660 By default, MobX will catch and re-throw exceptions happening in your code to make sure that a reaction in one exception does not prevent the scheduled execution of...

@Elvis5566 Yes there is a problem when using `asyncAction` with `reaction`. I'm making an `asyncReaction` but it takes some time. There is currently no clear workaround. 1. Do not use...

@fzyzcjy I got the name from https://github.com/mobxjs/mobx-utils.

@Robbendebiene The state of your application consists of **_core-state_** and **_derived-state_**. The _core-state_ is state inherent to the domain you are dealing with. For example, if you have a `Contact`...

@Robbendebiene This is because `delay` behaves as a debounce. `(p0) => total.value` is tracked, when it changes, the `effect` function(`print("reaction: $v");`) is executed. Computed is recomputed when reaction checks for...

There is nothing wrong with this behavior, I would appreciate it if you could provide a reproducible source code repository. ```dart // card_test.dart import 'package:flutter/material.dart'; import 'package:flutter_mobx/flutter_mobx.dart'; import 'package:flutter_test/flutter_test.dart'; import...

I also implemented some features of `mobx-utils`. https://github.com/amondnet/mobx_utils

@rkundnani ```dart appBar: viewModel.loadMessageFromNsdl ? AppBar() : null, ``` Are there any other conditions on this line? Could it be related to the this [issue](https://github.com/mobxjs/mobx.dart/issues/953#issuecomment-1844076300)?