common_bloc 4.2.4 copy "common_bloc: ^4.2.4" to clipboard
common_bloc: ^4.2.4 copied to clipboard

A collection of common blocs and cubits that maybe will be used very often (powered by the bloc library).

example/lib/main.dart

import 'package:flutter/material.dart';

import 'src/home.dart';

void main() => runApp(CommonBlocApp());

///Commom bloc example app
class CommonBlocApp extends StatefulWidget {
  @override
  _CommonBlocAppState createState() => _CommonBlocAppState();
}

class _CommonBlocAppState extends State<CommonBlocApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
        home: HomeScreen(),
        theme: ThemeData(
            accentColor: Color(0xFFFCD669),
            primaryColor: Color(0xFF6772E5),
            scaffoldBackgroundColor: Color(0xFFF6F9FC)));
  }
}
10
likes
120
pub points
4%
popularity

Publisher

verified publisherpixela.tech

A collection of common blocs and cubits that maybe will be used very often (powered by the bloc library).

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

bloc, bloc_concurrency, dio, freezed_annotation, webfeed

More

Packages that depend on common_bloc