height_slider

Last updated:

0 purchases

height_slider Image
height_slider Images
Add to Cart

Description:

height slider

Height Slider Widget for Flutter









✨ Demo #

🚀 Usage #
class _MyHomePageState extends State<MyHomePage> {
int height = 170;

@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: HeightSlider(
height: height,
onChange: (val) => setState(() => height = val),
unit: 'cm', // optional
),
),
);
}
}
copied to clipboard
You can also use your own person SVG, by passing the path through the parameter personImagePath.
📝 License #
This project is MIT licensed.

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.