Ascênio

Results 18 comments of Ascênio

It could select files on `space`, similar to what ranger does.

It seems like this issue was already solved.

I've tried myself and it does indeed work. Good job ;)

Maybe we could just rename the parameters to be more descriptive, for example: ```dart final response = await retry( // Make a GET request () => http.get('https://google.com'), // Retry on...

Actually it's not showing in neither cases. Look at [pub.dev](https://pub.dev/packages/cupertino_tabbar) now.

To observe **A** and trigger async computations which produce **B**, you could observe **A** with an reaction and trigger async actions which updates **B** accordingly.

It seems like this method is only for debug purposes. You can disable it by settings `debugAddStackTraceInObserverName` to false. For more details please take a look at [Observer](https://github.com/mobxjs/mobx.dart/blob/333f286debdcba730bfe55d6d25d6387eb1624d0/flutter_mobx/lib/src/observer.dart#L12) class.

Sounds nice, but there's a catch. What if the class has private dependencies which it doesn't want to expose? There should be a way to avoid generating getters for them.

I do think readonly should be the default behavior, but that would break so much code. That would be a breaking change similar to bloc's [latest changes](https://github.com/felangel/bloc/issues/2526). In similar way,...

I don't think that's possible. In your app you cant compare two objects of the same class using different combination of fields (directly), it would be hard to implement something...