base_module 0.0.1
base_module: ^0.0.1 copied to clipboard
This is a utility package that allows the developers to maintain their project structure easily. Use of this packages enables the power of MVP architecture and Provider as your default state managemen [...]
example/lib/main.dart
import 'package:base_module_example/my_application/my_application.dart';
import 'package:flutter/material.dart';
import 'dart:async';
import 'package:flutter/services.dart';
import 'package:base_module/base_module.dart';
void main() {
runApp(const MyApplication());
}