convenient_architecture 0.1.3 copy "convenient_architecture: ^0.1.3" to clipboard
convenient_architecture: ^0.1.3 copied to clipboard

The collection of useful utils and architecture base classes.

example/lib/main.dart

import 'package:example/application/notes/notes_loading_blocs.dart';
import 'package:example/domain/notes/facades/notes_facade.dart';
import 'package:example/presentation/notes/notes_screen.dart';
import 'package:flutter/material.dart';

/// `convenient_architecture` usage example.
///
/// *This code won't work*, it's just an example.
///
/// Here you can see how to use:
/// - `response_parser` package
/// - reactive facades ([NotesFacade])
/// - action blocs ([NotesLoaderBloc])
/// - reactive facade consumer cubit ([NotesCubit])
void main() {
  runApp(const App());
}

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

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: NotesScreen(),
    );
  }
}
0
likes
160
points
50
downloads

Publisher

unverified uploader

Weekly Downloads

The collection of useful utils and architecture base classes.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

bloc, equatable, fpdart, meta, response_parser

More

Packages that depend on convenient_architecture