mosaic 0.0.3 copy "mosaic: ^0.0.3" to clipboard
mosaic: ^0.0.3 copied to clipboard

Mosaic is a modular architecture for Flutter that enables clean separation of features using dynamic modules, internal events, UI injection, and centralized builds

example/mosaic_example.dart

import 'package:flutter/widgets.dart';

class Test extends StatefulWidget {
  const Test({super.key});

  @override
  State<Test> createState() => _TestState();
}

class _TestState extends State<Test> {
  @override
  Widget build(BuildContext context) {
    return const Placeholder();
  }
}
6
likes
0
points
11
downloads

Publisher

verified publishermarcomit.it

Weekly Downloads

Mosaic is a modular architecture for Flutter that enables clean separation of features using dynamic modules, internal events, UI injection, and centralized builds

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

args, flutter, yaml, yaml_edit

More

Packages that depend on mosaic