Erlend
Erlend
I believe this project is just a fun, proof-of-concept minimal text editor, which can be used to build on. Also if you look at the commit log you can see...
@shbmbhrdwj Could you provide an example ?
@shbmbhrdwj how would you add a Placeholder with that example and where do you get `_disposableBuildContext` from ?
I'm having the same problem now - what about a `MultiAsyncProvider`, which would take a list of either `FutureProvider` or `StreamProvider` or any type of provider which returns a type...
That only covers the case of two AsyncValue's, I was looking for a generic case of an array of values, but it should not be too hard to make.
Would it make sense to make a common base class for `FutureProvider` and `StreamProvider` called `AsyncProvider`? Which both return an `AsyncValue` so it would be easier to listen to a...
I made a proof of concept in this [gist](https://gist.github.com/erf/0823c6f951d6fe2a773237c927bdf0a2) to combine values as i suggested in a previous comment. I also made a method in order to check if all...
I was thinking something like rxdart's `combineLatest` or `Future.wait` - it's the same order out (result) as you put in. Type is dynamic so you just set it to the...
I made a repositiory as a package [combined_provider](https://github.com/erf/combined_provider) if you want to check out.
You are right that there is not really a need to use it to get non-async types, but it was more for the convenience of get a list of values...