简体   繁体   English

如何在下拉#flutter 中制作多选嵌套复选框?

[英]How to make multiselected nested checkbox in dropdown #flutter?

I want to make nested checkbox with dropdown.我想用下拉菜单制作嵌套复选框。 i will share the dropdown image here, kindly request to how manage this one我将在这里分享下拉图片,请询问如何管理这个在此处输入图像描述

This is the actual UI i want to make,这是我想要制作的实际用户界面,

Any one have any idea, please add it大家有什么想法欢迎补充

You can use ExpansionTile .您可以使用ExpansionTile

return Scaffold(
body: SingleChildScrollView(
  child: Column(
    children: [
      for (int i = 0; i < 12; i++)
        ExpansionTile(
          title: Text("item"),
          leading: Checkbox(
            value: false,
            onChanged: (value) {},
          ),
          children: [
            for (int i = 0; i < 4; i++)
              CheckboxListTile(
                value: false,
                contentPadding: EdgeInsets.fromLTRB(24, 4, 4, 4),
                controlAffinity: ListTileControlAffinity.leading,
                onChanged: (v) {},
                title: Text("sub item"),
              )
          ],
        )
    ],
  ),
),
);

在此处输入图像描述

  • How to define the data model is the key to solving the problem如何定义数据model是解决问题的关键

  • Refer to the following example, hope it will help you参考下面的例子,希望对你有帮助

import 'package:flutter/material.dart';

class MyWidget extends StatefulWidget {
  const MyWidget({super.key});

  @override
  State<MyWidget> createState() => _MyWidgetState();
}

class _MyWidgetState extends State<MyWidget> {
  List<PannelModel> _pannelList = [
    PannelModel('dev_unit_test', false, [
      {'dev_zone_test': false},
      {'zone_A': false},
      {'zone_B': false},
      {'test_zone': false},
    ]),
    PannelModel('dev_unit', false, [
      {'dev_zone': false},
    ])
  ];
  var _pannelSwich = ValueNotifier<List<PannelModel>>([]);
  @override
  void initState() {
    super.initState();
  }

  @override
  void dispose() {
    _pannelSwich.dispose();
    super.dispose();
  }

  Widget _buildCheckBox(
      int modelIndex, MapEntry<int, Map<String, bool>> checkBoxMap) {
    var currenModel = _pannelSwich.value[modelIndex];
    var title = currenModel.checkBoxList![checkBoxMap.key].keys.single;
    var isChecked = currenModel.checkBoxList![checkBoxMap.key].values.single;
    return Row(
      children: [
        Checkbox(
            value: isChecked,
            onChanged: (val) {
              currenModel.checkBoxList![checkBoxMap.key]
                  .update(title, (value) => !isChecked);
              setState(() {});
            }),
        Text(title)
      ],
    );
  }

  Widget _buildPannel(List<PannelModel> swichValues) {
    return Column(
      children: [
        ...swichValues.asMap().entries.map((map) => ExpansionPanelList(
              elevation: 0,
              expandedHeaderPadding: EdgeInsets.all(0),
              expansionCallback: (_, __) {
                var pannelModel = _pannelSwich.value[map.key];
                pannelModel.isOpen = !(pannelModel.isOpen ?? false);
                _pannelSwich.value[map.key] = pannelModel;
                setState(() {});
              },
              children: [
                ExpansionPanel(
                    headerBuilder: (context, _) {
                      return ListTile(
                        title: Text(swichValues[map.key].title ?? ''),
                      );
                    },
                    canTapOnHeader: true,
                    isExpanded: (_pannelSwich.value[map.key].isOpen ?? false),
                    body: Column(
                      children: [
                        ..._pannelSwich.value[map.key].checkBoxList!
                            .asMap()
                            .entries
                            .map((checkBoxMap) =>
                                _buildCheckBox(map.key, checkBoxMap))
                      ],
                    ))
              ],
            ))
      ],
    );
  }

  @override
  Widget build(BuildContext context) {
    if (_pannelSwich.value.isEmpty) _pannelSwich.value = [..._pannelList];
    return Scaffold(
      body: Center(
          child: SingleChildScrollView(
              child: Column(
        children: [
          ValueListenableBuilder(
              valueListenable: _pannelSwich,
              builder: (context, swichValues, _) {
                return _buildPannel(swichValues);
              })
        ],
      ))),
    );
  }
}

class PannelModel {
  String? title;
  bool? isOpen;
  List<Map<String, bool>>? checkBoxList;
  PannelModel(this.title, this.isOpen, this.checkBoxList);
}


声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM