flutter_base_extensions
=======
Features
This package used for apply height width with just using extension, this package is also used for convert string color to Color object
Getting started
flutter_base_extensions is basically an improved extension package to use.
Usage
Column(
children: [
/// here we used getHeight and getWidth package
100.0.getHeight(),
500.0.getWidth(),
/// here we used toColor extension to convert string to color
Container(
color: "0xFF000000".toColor(),
),
],
),