flutter_base_extensions 0.0.1 flutter_base_extensions: ^0.0.1 copied to clipboard
This package used for apply height width with just using extension, this package is also used for convert string to dynamic color object
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(),
),
],
),