wolfizutils 0.1.3 copy "wolfizutils: ^0.1.3" to clipboard
wolfizutils: ^0.1.3 copied to clipboard

Wolfiz technologies Utility Package to Work Smarter.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'package:get/get.dart';

import 'app/routes/app_pages.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';


void main() {
  //for using this package you must need to initiate screen util in main.dart as below
  // this package is dependent on following packages sp you don't need to install them again and again
  //--> flutter_screenutil
  //--> flutter_svg

  runApp(
      ScreenUtilInit(
        //Set the fit size (Find your UI design, look at the dimensions of the device screen and fill it in,unit in dp)
        designSize: Size(390, 844),
        builder: (_,__) =>
            GetMaterialApp(
              title: "Application",
              initialRoute: AppPages.INITIAL,
              getPages: AppPages.routes,
            ),
      ),
      );
  }
6
likes
80
pub points
7%
popularity

Publisher

unverified uploader

Wolfiz technologies Utility Package to Work Smarter.

Documentation

API reference

License

unknown (LICENSE)

Dependencies

connectivity, dio, flutter, flutter_screenutil, flutter_svg, get

More

Packages that depend on wolfizutils