Relative Content

Tag Archive for androidflutterdebuggingfirebase-realtime-database

When I click a button in the Flutter Screen app, it also hits the API, but nothing prints on my terminal and no changes are shown

void initState() { settoken(); print(“=dateOrPartnerCollection==>${GlobalData.getdateOrPartnerCollection()}”); WidgetsBinding.instance.addObserver(this); //! inwidget _localStreamController.stream.listen((event)=>print(event)); Fir ebaseFirestore.instance.collection(GlobalData.getdateOrPartnerCollection()).snapshots().listen((QuerySnapsho t querySnapshot) =>_localStreamController.add(querySnapshot));generateProfileIdList(); super.initState(); My code is working properly, but for debugging, when I want to print something on the terminal, it is not printing or getting changes after using this screen of can I solve this. I am using android. android flutter debugging […]

when i am clicking button on flutter screen app also api is hitting ,but on my terminal nothing is print and not showing any changes

`void initState() { settoken(); print(“=dateOrPartnerCollection==>${GlobalData.getdateOrPartnerCollection()}”); WidgetsBinding.instance.addObserver(this); //! inwidget _localStreamController.stream.listen((event)=>print(event)); Fir ebaseFirestore.instance.collection(GlobalData.getdateOrPartnerCollection()).snapshots().listen((QuerySnapsho t querySnapshot) =>_localStreamController.add(querySnapshot));generateProfileIdList(); super.initState(); > > – my code is working properly but for debugging if I want to print any thing on terminal its not print or getting changes after using this screen of can I solve this . I am using android […]