application_layers_framework 1.0.0
application_layers_framework: ^1.0.0 copied to clipboard
A framework to standardize the implementation of a Flutter application by separating the application logic into different layers.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'page/root/root_page.dart';
void main() {
runApp(RootPage());
}