get_cubit 1.1.0 copy "get_cubit: ^1.1.0" to clipboard
get_cubit: ^1.1.0 copied to clipboard

A package to help handle Cubit instances across the app.

example/lib/main.dart

import 'package:example/home.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'GetCubit Demo',
      theme: ThemeData(primarySwatch: Colors.blue, useMaterial3: false),
      home: const Home(),
    );
  }
}
7
likes
150
pub points
76%
popularity

Publisher

verified publishercodewave.com

A package to help handle Cubit instances across the app.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

bloc, flutter

More

Packages that depend on get_cubit