skip to Main Content

Flutter – How can I rebuild a widget after the StreamBuilder gets built?

I'm trying to get the totalValue in the title of the appBar. The value of totalValue comes from the Streambuilder and it changes everytime I press the FilterChips. Code: import 'package:flutter/material.dart'; import 'package:cloud_firestore/cloud_firestore.dart'; import 'package:calc_tag/services/get_items_for_month.dart'; import 'package:flutter/scheduler.dart'; class FilterChipExample extends…

VIEW QUESTION
Back To Top
Search