gredu_common 0.1.0
gredu_common: ^0.1.0 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,
theme: ThemeData(
primaryColor: Color(0xFF455DC7),
),
),
);
}