mvvm_framework 0.1.0 copy "mvvm_framework: ^0.1.0" to clipboard
mvvm_framework: ^0.1.0 copied to clipboard

A Flutter package for implementing the MVVM architectural pattern with ease, built as an extension of Flutter Bloc.

example/lib/main.dart

// coverage:ignore-file

import 'package:flutter/material.dart';
import 'package:mvvm_framework/mvvm_framework.dart';
import 'package:example/src/app.dart';
import 'package:example/src/core/injection.dart';
import 'package:example/src/generic_error_manager.dart';

Future<void> main() async {
  WidgetsFlutterBinding.ensureInitialized();
  ConfigMVVM.initialize(
    onGenericError: (errorContext) =>
        GenericErrorManager(errorContext).manageError(),
  );
  await configureDependencies();
  runApp(const MyApp());
}
0
likes
160
points
86
downloads

Publisher

verified publisherdraxent.dk

Weekly Downloads

A Flutter package for implementing the MVVM architectural pattern with ease, built as an extension of Flutter Bloc.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_bloc

More

Packages that depend on mvvm_framework