spinner_box 0.0.2 copy "spinner_box: ^0.0.2" to clipboard
spinner_box: ^0.0.2 copied to clipboard

A drop-down filter box.

Spinner_box #

pub package

  • 快速构建列表或按钮集形式的条件筛选项;
  • 支持按钮集后追加额外的组件(输入框,选择器等);
  • 支持弹框内容自定义;
待办
  • 扩展自定义主题配置,包括不限于按钮、勾选;
  • 优化部分类型使用;
图例

如何使用 #

在插件引用文件pubspec.yaml中添加 spinner_box: any

更多使用细节请查看 ./example #

简单使用 #

  SpinnerBox.rebuilder(
            titles: const ['单选条件', '单选条件'],
            builder: (notifier) {
              return [
                SpinnerFilter(
                  data: _condition1,
                  onCompleted: (result, name, data) {
                    notifier.updateName(name);
                    setState(() {
                      _result = result;
                      _condition1 = data;
                    });
                  },
                ).heightPart,
                ...
              ];
            },
          ),

更新选中项的标题/设置高亮 #

  notifier.updateName(name);
or
  notifier.setHighlight(true)

设置弹框的宽度 #

  SpinnerBox.builder(
              titles: const ['Builder', 'width-full'],
              builder: (notifier) {
                return [
                  SpinnerPopScope(
                    width: 150,  < ------- 固定宽度
                    offsetX: 30,  < ------- 偏移量
                    child: ValueListenableBuilder(
                        valueListenable: _condition2,
                        builder: (context, value, child) {
                             ...
                        }),
                  ),
                  SpinnerPopScope(
                    width: double.infinity,  < ------- 屏幕宽度
                    child: ValueListenableBuilder(
                        valueListenable: _condition2,
                        builder: (context, value, child) {
                          ...
                        }),
                  )
                ];
              },
            )
6
likes
0
pub points
47%
popularity

Publisher

unverified uploader

A drop-down filter box.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, tuple

More

Packages that depend on spinner_box