height_slider 1.3.2 copy "height_slider: ^1.3.2" to clipboard
height_slider: ^1.3.2 copied to clipboard

Customisable slider widget for retrieving a person's height.

Height Slider Widget for Flutter

Pub Version License: MIT

✨ Demo #

height slider

🚀 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
        ),
      ),
    );
  }
}

You can also use your own person SVG, by passing the path through the parameter personImagePath.

📝 License #

This project is MIT licensed.

23
likes
40
pub points
34%
popularity

Publisher

verified publishercovalsolutions.com

Customisable slider widget for retrieving a person's height.

Homepage
Repository (GitHub)
View/report issues

Documentation

Documentation

License

MIT (LICENSE)

Dependencies

flutter, flutter_svg

More

Packages that depend on height_slider