archify 1.1.1 copy "archify: ^1.1.1" to clipboard
archify: ^1.1.1 copied to clipboard

A CLI tool for generating clean architecture structure in Flutter projects.

example/lib/main.dart

import 'dart:async';

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

void main() async {
  runZonedGuarded(
    () async {
      WidgetsFlutterBinding.ensureInitialized();

      await _initializeServices();

      runApp(const AppRoot());
    },
    (error, stackTrace) async {
      // Add your error logging here
    },
  );
}

// Initializes required services before running the app
Future<void> _initializeServices() async {
  // Add your service/DI initialization here
}
2
likes
160
points
225
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A CLI tool for generating clean architecture structure in Flutter projects.

Homepage
Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

yaml

More

Packages that depend on archify