Questions tagged [flutter-bloc]

For questions relating to the "flutter_bloc" package for the Flutter framework. Use this tag in combination with the general [flutter] tag. If your question applies to Flutter more generally, use the [flutter] tag only.

This tag should be used for any questions regarding the flutter_bloc package for the Flutter framework.

flutter_bloc is a package implementing the BloC pattern for Flutter, specifically the BlocProvider and BlocBuilder classes.

To get started, you can read through the README document on GitHub.

932 questions
-3
votes
1 answer

Can someone please explain this block of code?

class PortfolioHomeCubit extends Cubit { PortfolioHomeCubit() : super(PortfolioHomeState()); final apiService = ApiService(); Future _onFetchContent() async { final cache = apiService.cache; final homeContent…
1 2 3
…
62
63