great_extensions 0.0.1 great_extensions: ^0.0.1 copied to clipboard
Great Extensions is a package to help you reduce your development complexity. Commonly used methods, widgets and functionalities have been added as extensions to reduce Boilerplate code
Great Extensions #
About #
- Great Extesions is package that helps you improve your development experience by reducing boilerplate code
- Please support for making the community stronger
Example #
Sizes #
To get the width
of the screen, use:
// before
MediaQuery.sizeOf(context).width
// after
context.width;
Widget #
To get scale widget on mouse Hover
, use:
Container().scaleOnHover();
To give opacity
to widget, use:
Row().opacity();
Data Types #
To do operations with different Data Types, use:
// before
int.parse("3");
// after
"3".intParse();
// before
DateTime.parse("3");
// after
"3".dateTimeParse();
// before
SizedBox(height: 10);
// after
10.heightBox();
// before
BorderRadius.circular(20);
// after
20.radiusCirc();
- You can find more such functionalities in this the package.