common_bloc 4.2.3 copy "common_bloc: ^4.2.3" to clipboard
common_bloc: ^4.2.3 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
130
points
116
downloads

Publisher

verified publisherpixela.tech

Weekly Downloads

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

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

bloc, bloc_concurrency, dio, freezed_annotation, webfeed

More

Packages that depend on common_bloc