-
Get the MediaQuery size
getSize(context)
Make a
responsive gridviewby using both1 and 2
-
Based on your static design’s
width, calculate the responsivegrid item count.crossAxisCount: getResCrosCountGrid( context: context, width: 180, ),
-
For responsive grid item
aspect ratio, it should be derived from your static design based onheightandwidth.childAspectRatio: getResGridRatio( context: context, height: 165, width: 180, ),
-
For normal grid
aspect ratioHaving this aspect ratio will never break in larger or smaller devices
crossAxisCount: 2, childAspectRatio: getGridRatio( crossAxisCount: 2, context: context, height: 165, width: 180, ),
Your provided
heightandwidthdetermine how it works
-
Get color from hash code
CHColor.fromHex('#fffff')
-
Get hash code from color
Color.fromRGBO(250, 250, 250, 0.1).toHex()
-
All
(padding/margin)@override Widget build(BuildContext context) { return Container( child: Text('data').cPadAll(10) // cMargAll ); }
-
Only
(padding/margin)@override Widget build(BuildContext context) { return Container( child: Text('data').cPadOnly( l: 10, r: 10, t: 10, b: 10, ), // cMargOnly ); }
-
Symmetric
(padding/margin)@override Widget build(BuildContext context) { return Container( child: Text('data').cPadSymmetric( h: 10, v: 10, ), // cMargSymmetric ); }
-
Zero
(padding/margin)@override Widget build(BuildContext context) { return Container( child: Text('data').cPadZero, // cMargZero ); }
-
Allows you to insert widgets inside a
CustomScrollViewText('data').cSliverToBox
-
Allows you to handle
VisibilityandOpacityText('data').cVisible(true) Text('data').cOpacity(0.3)