Router based navigation with flutter bloc

Issue I am trying to build my own router similar to go_router, based on flutter_bloc. What I am trying to achieve is very similar to this guide that inspired the minimal implementation below: import ‘package:flutter/foundation.dart’; import ‘package:flutter/material.dart’; import ‘package:flutter_bloc/flutter_bloc.dart’; void

Continue reading

UI not being updated after state change

Issue I am stuck in a weird situation. Have cross-checked all the reference. Problem is my timer is not updating the modelBottomSheet. This is my WorkOutTracker class WorkOutTracker extends StatefulWidget { const WorkOutTracker({Key? key}) : super(key: key); @override State<WorkOutTracker> createState()

Continue reading