flutter seekbar 可拖拽可点击的进度条

flutter seekbar

wechat :674668211 加微信进flutter微信群
掘金: https://juejin.im/user/581206302f301e005c60cd2f
简书:https://www.jianshu.com/u/4a5dce56807b
csdn:https://me.csdn.net/liu__520
github : https://github.com/LiuC520/

A beautiful flutter custom seekbar, which has a bubble view with progress appearing upon when seeking. 自定义SeekBar,进度变化更以可视化气泡样式呈现

效果图

screenshot.gif

引入:

dependencies:
  flutter:
    sdk: flutter
  flutter_seekbar:
    git: https://github.com/LiuC520/flutter_seekbar.git

属性

Attribute 属性 默认值 Description 描述
min 0.0 最小值
max 100.0 最大值
value 0.0 默认进度值
backgroundColor 页面配置的backgroundColor 进度条背景颜色
progressColor accentColor 当前进度的颜色
progresseight 5 进度条的高度
sectionCount 1 进度条分为几段
sectionColor 当前进度的颜色 进度条每一个间隔的圆圈的颜色
sectionUnSelecteColor 进度条的背景颜色 间隔未选中的颜色
sectionRadius 0.0 间隔圆的半径
showSectionText false 是否显示刻度值
sectionTexts 空数组 自定义刻度值,是个数组,数组必须是SectionTextModel的实体
sectionTextSize 14 刻度值字体的大小
afterDragShowSectionText false 是否在拖拽结束后显示刻度值
sectionTextColor 黑色 刻度值字体的颜色
sectionSelectTextColor 透明(Colors.transparent) 选中的刻度值字体的颜色
sectionDecimal 0 刻度值的小数点位数
sectionTextMarginTop 4.0 刻度值距离进度条的间距
indicatorRadius 进度条的高度 + 2 中间指示器圆圈的半径
indicatorColor 进度条当前进度的颜色 中间指示器圆圈的颜色
semanticsLabel 这个是给盲人用的,屏幕阅读器的要读出来的标签
semanticsValue 这个是给盲人用的,屏幕阅读器的要读出的进度条的值
onValueChanged 默认是空方法 进度改变的回调,是ProgressValue的实体,里面包含了进度,0-1,还包含了当前的进度值
isRound true ( 圆角 ) 圆角还是直角,圆角的默认半径是进度条高度的一半
hideBubble true 是否显示气泡,默认是隐藏
alwaysShowBubble false 是否一致显示气泡,默认是false,也就是只有在拖拽的时间才显示气泡,拖拽结束不显示
bubbleRadius 20 气泡的半径
bubbleHeight 60 气泡的总高度,包含顶部圆形的半径,默认是气泡半径的3倍
bubbleColor 当前进度条的颜色 气泡的背景颜色
bubbleTextColor 白色 气泡中当前进度值的字体颜色,默认是白色
bubbleTextSize 14 气泡中当前进度值的字体大小,默认是14
bubbleMargin 4 气泡底部距离进度条的高度,默认是4
bubbleInCenter false 气泡是否在进度条的中间显示,默认是

Example

1、首先在pubspec.yaml中添加依赖

dependencies:
  flutter:
    sdk: flutter
  flutter_seekbar:
       git: https://github.com/LiuC520/flutter_seekbar.git

2、示例

import 'package:flutter_seekbar/flutter_seekbar.dart' show ProgressValue, SectionTextModel, SeekBar;



class Home extends StatefulWidget {
  @override
  State<StatefulWidget> createState() {
    return _HomeState();
  }
}

class _HomeState extends State<Home> with SingleTickerProviderStateMixin {
  List<SectionTextModel> sectionTexts = [];

  @override
  void initState() {
    super.initState();
    sectionTexts.add(
        SectionTextModel(position: 0, text: 'bad', progressColor: Colors.red));
    sectionTexts.add(SectionTextModel(
        position: 2, text: 'good', progressColor: Colors.yellow));
    sectionTexts.add(SectionTextModel(
        position: 4, text: 'great', progressColor: Colors.green));
  }

  @override
  Widget build(BuildContext context) {
      return SingleChildScrollView(
        child: Container(
            padding: EdgeInsets.fromLTRB(0, 80, 0, 0),
            child: Column(
              children: <Widget>[
                Column(
                  children: <Widget>[
                    Container(
                        width: 200,
                        child: SeekBar(
                          progresseight: 10,
                          indicatorRadius: 0.0,
                          value: 0.2,
                          isRound: false,
                        )),
                    Text(
                      "直角",
                      style: TextStyle(fontSize: 10),
                    ),
                  ],
                ),
                Padding(
                  padding: EdgeInsets.fromLTRB(0, 40, 0, 0),
                  child: Column(
                    children: <Widget>[
                      Container(
                          width: 200,
                          child: SeekBar(
                              indicatorRadius: 0.0,
                              progresseight: 5,
                              value: 0.6,
                              hideBubble: false,
                              alwaysShowBubble: true,
                              bubbleRadius: 14,
                              bubbleColor: Colors.purple,
                              bubbleTextColor: Colors.white,
                              bubbleTextSize: 14,
                              bubbleMargin: 4,
                              bubbleInCenter: true)),
                      Text(
                        "圆角,气泡居中,始终显示气泡",
                        style: TextStyle(fontSize: 10),
                      ),
                    ],
                  ),
                ),
                Padding(
                  padding: EdgeInsets.fromLTRB(0, 40, 0, 0),
                  child: Column(
                    children: <Widget>[
                      Container(
                          padding: EdgeInsets.fromLTRB(0, 0, 0, 6),
                          width: 200,
                          child: SeekBar(
                            progresseight: 5,
                            value: 0.2,
                          )),
                      Text(
                        "圆角带指示器",
                        style: TextStyle(fontSize: 10),
                      ),
                    ],
                  ),
                ),
                Padding(
                  padding: EdgeInsets.fromLTRB(0, 40, 0, 0),
                  child: Column(
                    children: <Widget>[
                      Container(
                          padding: EdgeInsets.fromLTRB(0, 0, 0, 6),
                          width: 200,
                          child: SeekBar(
                            progresseight: 5,
                            value: 0.5,
                            sectionCount: 5,
                          )),
                      Text(
                        "带间隔带指示器",
                        style: TextStyle(fontSize: 10),
                      )
                    ],
                  ),
                ),
                Padding(
                  padding: EdgeInsets.fromLTRB(0, 40, 0, 0),
                  child: Column(
                    children: <Widget>[
                      Container(
                          padding: EdgeInsets.fromLTRB(0, 0, 0, 6),
                          width: 200,
                          child: SeekBar(
                            progresseight: 5,
                            value: 0.5,
                            sectionCount: 4,
                            sectionRadius: 6,
                            sectionColor: Colors.red,
                          )),
                      Text(
                        "带间隔画间隔的指示器",
                        style: TextStyle(fontSize: 10),
                      )
                    ],
                  ),
                ),
                Padding(
                  padding: EdgeInsets.fromLTRB(0, 40, 0, 0),
                  child: Column(
                    children: <Widget>[
                      Row(
                        crossAxisAlignment: CrossAxisAlignment.center,
                        mainAxisSize: MainAxisSize.min,
                        children: <Widget>[
                          Text('-10'),
                          Container(
                              margin: EdgeInsets.fromLTRB(10, 0, 10, 4),
                              width: 200,
                              child: SeekBar(
                                  progresseight: 5,
                                  value: 0.5,
                                  min: -10,
                                  max: 80,
                                  sectionCount: 4,
                                  sectionRadius: 6,
                                  sectionColor: Colors.red,
                                  hideBubble: false,
                                  alwaysShowBubble: true,
                                  bubbleRadius: 14,
                                  bubbleColor: Colors.purple,
                                  bubbleTextColor: Colors.white,
                                  bubbleTextSize: 14,
                                  bubbleMargin: 4,
                                  onValueChanged: (v) {
                                    print(
                                        '当前进度:${v.progress} ,当前的取值:${v.value}');
                                  })),
                          Text('80')
                        ],
                      ),
                      Text(
                        "带间隔带气泡的指示器,气泡",
                        style: TextStyle(fontSize: 10),
                      )
                    ],
                  ),
                ),
                Padding(
                  padding: EdgeInsets.fromLTRB(0, 40, 0, 0),
                  child: Column(
                    children: <Widget>[
                      Container(
                          margin: EdgeInsets.fromLTRB(0, 0, 0, 40),
                          width: 200,
                          child: SeekBar(
                            progresseight: 10,
                            value: 0.5,
                            sectionCount: 4,
                            sectionRadius: 5,
                            sectionColor: Colors.red,
                            sectionUnSelecteColor: Colors.red[100],
                            showSectionText: true,
                            sectionTextMarginTop: 2,
                            sectionDecimal: 0,
                            sectionTextColor: Colors.black,
                            sectionSelectTextColor: Colors.red,
                            sectionTextSize: 14,
                          )),
                      Text(
                        "带带刻度的指示器,可设置刻度的样式和选中的刻度的样式",
                        style: TextStyle(fontSize: 10),
                      )
                    ],
                  ),
                ),
                Padding(
                  padding: EdgeInsets.fromLTRB(0, 40, 0, 0),
                  child: Column(
                    children: <Widget>[
                      Container(
                          margin: EdgeInsets.fromLTRB(0, 0, 0, 40),
                          width: 200,
                          child: SeekBar(
                            progresseight: 10,
                            value: 0.5,
                            sectionCount: 4,
                            sectionRadius: 5,
                            sectionColor: Colors.red,
                            sectionUnSelecteColor: Colors.red[100],
                            showSectionText: true,
                            sectionTextMarginTop: 2,
                            sectionDecimal: 0,
                            sectionTextColor: Colors.black,
                            sectionSelectTextColor: Colors.red,
                            sectionTextSize: 14,
                            hideBubble: false,
                            bubbleRadius: 14,
                            bubbleColor: Colors.purple,
                            bubbleTextColor: Colors.white,
                            bubbleTextSize: 14,
                            bubbleMargin: 4,
                            afterDragShowSectionText: true,
                          )),
                      Text(
                        "带带刻度的指示器,可设置刻度的样式和选中的刻度的样式,拖拽结束显示刻度值,拖拽开始显示气泡",
                        style: TextStyle(fontSize: 10),
                      )
                    ],
                  ),
                ),
                Padding(
                  padding: EdgeInsets.fromLTRB(0, 40, 0, 0),
                  child: Column(
                    children: <Widget>[
                      Container(
                          margin: EdgeInsets.fromLTRB(0, 0, 0, 40),
                          width: 200,
                          child: SeekBar(
                            min: -100,
                            max: 200,
                            progresseight: 10,
                            value: 0.75,
                            sectionCount: 4,
                            sectionRadius: 6,
                            showSectionText: true,
                            sectionTexts: [],
                            sectionTextMarginTop: 2,
                            sectionDecimal: 0,
                            sectionTextColor: Colors.black,
                            sectionSelectTextColor: Colors.red,
                            sectionTextSize: 14,
                            hideBubble: false,
                            bubbleRadius: 14,
                            bubbleColor: Colors.purple,
                            bubbleTextColor: Colors.white,
                            bubbleTextSize: 14,
                            bubbleMargin: 4,
                            afterDragShowSectionText: true,
                          )),
                      Text(
                        "自定义刻度值显示,带带刻度的指示器,可设置刻度的样式和选中的刻度的样式,拖拽结束显示刻度值,拖拽开始显示气泡",
                        style: TextStyle(fontSize: 10),
                      )
                    ],
                  ),
                ),
                Padding(
                  padding: EdgeInsets.fromLTRB(0, 40, 0, 0),
                  child: Column(
                    children: <Widget>[
                      Container(
                          margin: EdgeInsets.fromLTRB(0, 0, 0, 40),
                          width: 200,
                          child: SeekBar(
                            progresseight: 10,
                            value: 0.75,
                            sectionCount: 4,
                            sectionRadius: 6,
                            showSectionText: true,
                            sectionTexts: sectionTexts,
                            sectionTextMarginTop: 2,
                            sectionDecimal: 0,
                            sectionTextColor: Colors.black,
                            sectionSelectTextColor: Colors.red,
                            sectionTextSize: 14,
                            hideBubble: false,
                            bubbleRadius: 14,
                            bubbleColor: Colors.purple,
                            bubbleTextColor: Colors.white,
                            bubbleTextSize: 14,
                            bubbleMargin: 4,
                            afterDragShowSectionText: true,
                          )),
                      Text(
                        "自定义刻度值显示,带带刻度的指示器,可设置刻度的样式和选中的刻度的样式,拖拽结束显示刻度值,拖拽开始显示气泡",
                        style: TextStyle(fontSize: 10),
                      )
                    ],
                  ),
                ),
              ],
            )),
      );

  }
}

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,271评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,275评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,151评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,550评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,553评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,559评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,924评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,580评论 0 257
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,826评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,578评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,661评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,363评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,940评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,926评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,156评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,872评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,391评论 2 342

推荐阅读更多精彩内容