gredu_common 0.0.4+rev1
gredu_common: ^0.0.4+rev1 copied to clipboard
GreduCommon is an common widget / utils or helper library i made for all type application. whatever application you made, GreduCommon it will help you reduce your fucking time on development process
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'app/routes/app_pages.dart';
void main() {
runApp(
GetMaterialApp(
title: 'Application',
initialRoute: AppPages.INITIAL,
debugShowCheckedModeBanner: false,
getPages: AppPages.routes,
),
);
}