Last updated:
0 purchases
great extensions
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;
copied to clipboard
Widget #
To get scale widget on mouse Hover, use:
Container().scaleOnHover();
copied to clipboard
To give opacity to widget, use:
Row().opacity();
copied to clipboard
Data Types #
To do operations with different Data Types, use:
// before
int.parse("3");
// after
"3".intParse();
copied to clipboard
// before
DateTime.parse("3");
// after
"3".dateTimeParse();
copied to clipboard
// before
SizedBox(height: 10);
// after
10.heightBox();
copied to clipboard
// before
BorderRadius.circular(20);
// after
20.radiusCirc();
copied to clipboard
You can find more such functionalities in this the package.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.