flutter-by-example
flutter-by-example copied to clipboard
Just have a question about StreamBuilder
Hi John, I watched your presentation on Google I/O 2018 about Reactive with Flutter. About StreamBuilder, do this make the ui rebuilt even just Navigates to another screen?
I download the Cart Bloc source code from Filiph Github, and put print statement inside StreamBuilder function of Cart Count, and if i navigate to Shopping Cart Screen, It rebuilds the Cart Count Widget.
Please take a look on image below
When you navigate to the Cart page, all of the widgets on the main screen redraw, not just the CartButton, so this is more to do with the implementation of the navigation system and not StreamBuilder.