Do I need a StatefulWidget if my app is using bloc?

Multi tool use


Do I need a StatefulWidget if my app is using bloc?
I'm missing something.
I recently watched the talk here, where the flutter devs are going through using the bloc development method with reactivex in Dart. If I'm using these streams and streamBuilders to manage data flowing through my app, and rebuild appropriately, does it behoove me to use a StatefulWidget, where I'm using the bloc method anyway? I guess more specifically, why would I want to complicate my app using streams and states, when I could just use streams, wrap what I need to in a provider, wrap some widgets in a streamBuilder, and call it a day?
2 Answers
2
When using StreamBuilder
you are in fact using a StatefulWidget
which listen to that Stream
. The only difference is that you don't write setState
yourself.
StreamBuilder
StatefulWidget
Stream
setState
Another common use-case is for animations. If you want transitions such as fade/translate/whatever; you'll have to use AnimationController
. Which you will store inside a custom StatefulWidget
AnimationController
StatefulWidget
TextInputController
In the instances where I have needed to initialise state in my bloc I have used a StatefulWidget
and put my initialisation logic inside the initState()
override.
StatefulWidget
initState()
(please correct me kindly if this isn't best practice, I'm new to bloc, flutter and streams!)
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
Also for text input fields (
TextInputController
)– boformer
Jul 19 at 19:40