general_framework 0.0.2
general_framework: ^0.0.2 copied to clipboard
General Framework Library for help you create project more easy with general standarization style code base
example/example.dart
// import "package:flutter/material.dart";
import "package:general_framework/flutter/material.dart";
import "package:general_framework/general_framework.dart";
// import "package:path/path.dart";
void main(List<String> args) {
GeneralFramework generalFramework = GeneralFramework();
generalFramework.init();
runApp(const MaterialApp());
}