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

outdated

A collection of common blocs 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());

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
0
pub points
4%
popularity

Publisher

verified publisherpixela.tech

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

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

bloc, flutter, freezed_annotation, http, http_interceptor, meta, webfeed

More

Packages that depend on common_bloc