Quick Setup Of BLoC Pattern In Flutter

This post lists exact steps for quick setup of BLoC pattern in Flutter app.

Introduction

We have already talked about working with BLoC pattern in depth in our previous post. So this post is not going to be a long one but rather a “quick” setup guide as the title suggests.

Setup For BLoC Pattern

  1. First and foremost, add dependency for rxdart package.
  2. Create your BLoCs.
  3. Create a global App State and add the BLoCs.
  4. Use App State Provider to wrap your Flutter App.
  5. Make use of BLoCs within your widgets.

Related Posts On Bloc Pattern

Flutter: Working With BLoC using Reactive Programming

DecisionMentor app

Flutter: Inherited Widget Basics

Build Reactive Apps With Flutter (Youtube Video By Google Developers)