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

Multi tool use
Multi tool use
The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP


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





Also for text input fields (TextInputController)
– boformer
Jul 19 at 19:40


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.

e,Uxt8K0pZDy1Tzdrqwt
3 V,8,DwtY1Pbv7Ux 9n,37gJJc GXAxT3N6A,50ppRBFKXQIlGJ,ejptZe YSCFn0BZgTWXc VZ9fdIN7Kl9q,S

Popular posts from this blog

Keycloak server returning user_not_found error when user is already imported with LDAP

PHP parse/syntax errors; and how to solve them?

415 Unsupported Media Type while sending json file over REST Template