Alexander Konotop
Alexander Konotop
Here's a way of representing what's the case. ### This is not a problem: ```mermaid graph LR B1[BlocA instance1] B2[BlocA instance2] W1[WidgetA returns BlocBuilder of BlocA] W2[WidgetA returns BlocBuilder of...
Doing the same manually invlolves trickering with context: ``` Widget Build(){ return Builder var bloc1 = ... return Provider return Builder var bloc2 = ... return Provider //...etc ``` Which...
Ok, let's then get into real code example. My app page has 3 widgets and 3 blocs. One bloc per widget. Two of both widgets and blocs are of the...
Actually that "wrong way" is also okay if we manually handle bloc.close() somewhere upper (for example in the `Page`) Then we should also use `BlocProvider.value()` instead of a regular `BlocProvider`...
So the purpose is exactly the same as of MultiBlocProvider. The main difference is ability to somehow handle multiple blocs of same type.
Of course I can add any amount of spaghetti into the bloc and it's state and also in a widget built by BlocBuilder of that bloc. The goal is to...
Hmm it seems that I can just click an appeared field with a mouse and perform a rename in X11. Strange how I didn't realize it before. So probably the...
For me just `sudo archlinux-java set java-17-openjdk` helped. 11 was not working.
Here's the link for prelude conversation #978
Seems like there's an interface trouble though somehow the code is being compiled and working in my project. Fixing an interface gives strange wrappers-regression.ts change which causes a test failure:...