An open API service indexing awesome lists of open source software.

https://github.com/coval-solutions/height-slider

A customisable height slider for Flutter.
https://github.com/coval-solutions/height-slider

android bmi dart flutter height height-slider ios plugin slider widget

Last synced: 4 months ago
JSON representation

A customisable height slider for Flutter.

Awesome Lists containing this project

README

          

Height Slider Widget for Flutter





Pub Version


License: MIT

## ✨ Demo

height slider

## 🚀 Usage
```dart
class _MyHomePageState extends State {
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](https://raw.githubusercontent.com/coval-solutions/height-slider/master/LICENSE) licensed.