height-slider A customisable height slider for Flutter.
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),
),
),
);
}
}
Author: coval-solutions
GitHub: https://github.com/coval-solutions/height-slider
#flutter #dart #programming