All Projects → coval-solutions → height-slider

coval-solutions / height-slider

Licence: MIT License
A customisable height slider for Flutter.

Programming Languages

objective c
16641 projects - #2 most used programming language
dart
5743 projects
ruby
36898 projects - #4 most used programming language
c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to height-slider

Flutter fluid slider
A fluid design slider that works just like the Slider material widget.
Stars: ✭ 232 (+1446.67%)
Mutual labels:  widget, slider
Widget
A set of widgets based on jQuery&&javascript. 一套基于jquery或javascript的插件库 :轮播、标签页、滚动条、下拉框、对话框、搜索提示、城市选择(城市三级联动)、日历等
Stars: ✭ 1,579 (+10426.67%)
Mutual labels:  widget, slider
range-slider
Customizable slider (range) component for JavaScript with no dependencies
Stars: ✭ 26 (+73.33%)
Mutual labels:  widget, slider
Flutter app
🔥🔥🔥本项目包括各种基本控件使用(Text、TextField、Icon、Image、Listview、Gridview、Picker、Stepper、Dialog、Slider、Row、Appbar、Sizebox、BottomSheet、Chip、Dismissible、FlutterLogo、Check、Switch、TabBar、BottomNavigationBar、Sliver等)、豆瓣电影、tubitv、每日一文、和天气、百姓生活、随机诗词、联系人、句子迷、好奇心日报、有道精品课、高德定位、音乐播放器🎵、追书神器等板块
Stars: ✭ 2,140 (+14166.67%)
Mutual labels:  widget, slider
wui
Collection of GUI widgets for the web
Stars: ✭ 44 (+193.33%)
Mutual labels:  widget, slider
react-color
🎨 Is a tiny color picker widget component for React apps.
Stars: ✭ 50 (+233.33%)
Mutual labels:  widget, slider
MTCircularSlider
A feature-rich circular slider control written in Swift.
Stars: ✭ 118 (+686.67%)
Mutual labels:  widget, slider
eros-plugin-ios-TencentCaptcha
腾讯防水墙、滑动验证、类似bilibili滑动验证码
Stars: ✭ 21 (+40%)
Mutual labels:  slider
yii2-editable-widget
X-Editable Widget for Yii2
Stars: ✭ 56 (+273.33%)
Mutual labels:  widget
react-flickity-component
A React.js component for using @desandro's Flickity
Stars: ✭ 258 (+1620%)
Mutual labels:  slider
shiny-directory-input
An shiny input widget for selecting directories
Stars: ✭ 43 (+186.67%)
Mutual labels:  widget
slider-button-card
A button card with integrated slider
Stars: ✭ 319 (+2026.67%)
Mutual labels:  slider
TW-Tamasha
Presentation and slideshow app using web technology based onTiddlywiki
Stars: ✭ 28 (+86.67%)
Mutual labels:  slider
bromb
A feedback widget designed to be simple and customizable.
Stars: ✭ 41 (+173.33%)
Mutual labels:  widget
shopify-product-image-slider
Implementation of the Slick image carousel into a Shopify store
Stars: ✭ 21 (+40%)
Mutual labels:  slider
react-native-measure-text
Measure text width and/or height without laying it out.
Stars: ✭ 105 (+600%)
Mutual labels:  height
SPPerspective
Widgets iOS 14 animation with 3D and dynamic shadow. Customisable transform and duration.
Stars: ✭ 271 (+1706.67%)
Mutual labels:  widget
slack widgets
An abstraction of the JSON structure needed to create widgets in Slack message attachments
Stars: ✭ 14 (-6.67%)
Mutual labels:  widget
BlockEditText
Block EditText is a library provide an input view present in multiple block style that common use in TAC or credit card field.
Stars: ✭ 113 (+653.33%)
Mutual labels:  widget
pictureflow
Cover Flow clone at a Qt widget
Stars: ✭ 16 (+6.67%)
Mutual labels:  widget

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].