我怎样才能在Flutter中创建这种类型的设计?

gcxthw6b  于 2023-01-05  发布在  Flutter
关注(0)|答案(4)|浏览(103)

我有一个项目列表,我想过滤时,容器被选中,当你选择一个项目,它应该把你一个不同的小部件,也有一个项目列表。
我会给予下面的图片更好地澄清。

我试着在www.example.com中寻找pub.dev可以帮助我更快实现这一目标的包,但没有找到。
我也试着用我的定制来实现这个目标,但是我做不到。
拜托,我需要答案。谢谢!

xjreopfe

xjreopfe1#

我认为这套方案将帮助您实现这一目标:https://pub.dev/packages/buttons_tabbar

h43kikqp

h43kikqp2#

使用FilterChip小部件和ListView小部件(水平)。

a9wyjsp7

a9wyjsp73#

useChoiceChip()我还假设choice芯片中的数据文本来自某种后端

...
 var _value = 0;
  String chipCatId = "";
  bool isChipSelected = false;
...
 child:ListView.builder(
                                  scrollDirection: Axis.horizontal,
                                  shrinkWrap: true,
                                  itemCount:
                                      snapshot.data!.data!.children!.length,
                                  itemBuilder: (context, index) {
                                    return Padding(
                                      padding: const EdgeInsets.symmetric(
                                          horizontal: 2.0),
                                      child: ChoiceChip(
                                          backgroundColor:
                                              AppColors.dullThemeColor,
                                          label: Text(
                                            index == 0
                                                ? "All"
                                                : snapshot.data!.data!
                                                    .children![index - 1].name
                                                    .toString(),
                                            style: const TextStyle(
                                              color: AppColors.whiteThemeColor,
                                            ),
                                          ),
                                          selected: _value == index,
                                          pressElevation: 20,
                                          elevation: 2.0,
                                          selectedColor:
                                              AppColors.secondaryThemeColor,
                                          onSelected: (bool selected) {
                                            setState(() {
                                              chipCatId = snapshot.data!.data!
                                                  .children![index - 1].id
                                                  .toString();
                                              isChipSelected = selected;
                                              _value =
                                                  (selected ? index : null)!;
                                              _onRefresh();
                                            });
                                          }),
                                    );
                                  },
                                );
lvmkulzt

lvmkulzt4#

你可以简单地这样

List<String> all = ["All", "Message", "Jobs"];
        
    Row(
    crossAxisAlignment: CrossAxisAlignment.start,
    children: List.generate(
      all.length,
      (index) => Padding(
        padding: const EdgeInsets.all(8.0),
        child: Container(
          decoration: BoxDecoration(
              color: Colors.grey.withOpacity(0.5),
              borderRadius: const BorderRadius.all(
                  Radius.circular(20))),
          child: Padding(
            padding: const EdgeInsets.symmetric(
                horizontal: 12, vertical: 8),
            child: Text(
              all[index],
              style: Theme.of(context)
                  .textTheme
                  .subtitle2
                  ?.copyWith(
                    color: AppTheme.grey1,
                    fontWeight: FontWeight.normal,
                  ),
            ),
          ),
        ),
      ),
    ), 
)

输出:

相关问题