bloc_builder 2.1.1 copy "bloc_builder: ^2.1.1" to clipboard
bloc_builder: ^2.1.1 copied to clipboard

Util to easily create BLoC

bloc_builder #

easily way to create BLoC

view full-document at: https://pub.dev/packages/bloc_builder

bloc_builder 2 will not support stream any more, please create with flutter_live_data

Example #

$watch #

LiveData<int> liveData = LiveData(1);

var widget = $watch(
  liveData,
  build: (BuildContext _, int value) {
    return Text('value is $value');
  },
);

$when #

LiveData<bool> liveData = LiveData(1);

var widget = $when(liveData) |
  $case(
    (int value) => value % 2 == 0,
    build: (BuildContext _, int value) {
      return Text('$value is Even.');
    },
  ) |
  $case(
    (int value) => value % 2 == 1,
    build: (BuildContext _, int value) {
      return Text('$value is Odd.');
    },
  ) |
  $else(
    build: (BuildContext _, int value) {
      return Text('impossible!');
    },
  );
LiveData<bool> liveData = LiveData(1);

var widget = $when(liveData)
  ..$case(
    (int value) => value % 2 == 0,
    build: (BuildContext _, int value) {
      return Text('$value is Even.');
    },
  )
  ..$case(
    (int value) => value % 2 == 1,
    build: (BuildContext _, int value) {
      return Text('$value is Odd.');
    },
  )
  ..$else(
    build: (BuildContext _, int value) {
      return Text('impossible!');
    },
  );
LiveData<bool> liveData = LiveData(1);

var widget = $if(
    condition: (int value) => value % 2 == 0,
    build: (BuildContext _, int value) {
      return Text('$value is Even.');
    },
  ) |
  $else(
    build: (BuildContext _, int value) {
      return Text('$value is Odd.');
    },
  );
LiveData<bool> liveData = LiveData(true);

var widget = $when(liveData) |
  $true(
    build: (BuildContext _, bool value) {
      return Text('head');
    },
  ) |
  $false(
    build: (BuildContext _, bool value) {
      return Text('tail');
    },
  );

$guard #

LiveData<List<int>> counters = LiveData([1]);
LiveData<bool> isLoading = LiveData(false);
LiveData<String?> errorMessage = LiveData(null);

var widget = $guard(
    isLoading,
    when: (bool loading) => loading,
    build: (BuildContext _, bool loading) {
      return Text('now loading...');
    },
  ) |
  $guard.isNotNull(
    errorMessage,
    build: (BuildContext _, String? msg) {
      return Text('error: $msg');
    },
  ) |
  $guard.isEmpty(
    counters,
    build: (BuildContext _, List<int> items) {
      return Text('empty data!');
    },
  ) |
  $watch(
    counters,
    build: (BuildContext _, List<int> items) {
      return Text('data is $items');
    },
  );
1
likes
0
pub points
60%
popularity

Publisher

unverified uploader

Util to easily create BLoC

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, flutter_live_data, logger

More

Packages that depend on bloc_builder